I had this problem a few times with Greek Characters. The best way for me was to import a log Column with the seccond language. But than you have a problem with characters and fonts.
This problem is caused by the 16-bit problem of P3. Therefore I wrote a small macro in Excel:
Function TranslateGreek()
Dim test, zwischen As String
iRow = 3
Worksheets("Activity").Activate
Do While Cells(iRow, 1) <> ""
Application.StatusBar = iRow - 3
If Cells(iRow, 19) <> "" Then
test = ""
For i = 1 To Len(Cells(iRow, 19))
zwischen = AscW(Mid(Cells(iRow, 19), i, 1))
test = test & IIf(zwischen < 256, ChrW(zwischen), ChrW(zwischen - 720))
Next i
Cells(iRow, 11) = test
End If
iRow = iRow + 1
Loop
End Function
The result of this translation looks funny in Excel,imported in P3 it still looks funny if I use Arial (Like: Âüñåéïò ÊëÜäïò), but as soon as I use a font for Greek as I used it for Windows 95, everthing is . So maybe this works in a similar way for Chinese (Maybe "720" must be changed into another number)
Spider Project is most functional and powerful professional project management software.
The first SP version was launched in 1993 and since then it has been constantly improved. Today is used in 34 countries though most Spider Project customers are in Russia. Spider Project offers numerous unique functional features and is the only PM software that optimizes resource, cost, and material constrained schedules and budgets for projects and portfolios.
The unique features of Spider Project include Quantity Based Scheduling, Conditional Scheduling, Skill Scheduling, Optimal Resource, Cost and Material Leveling, Resource Critical Path Calculation, Cash and Material Flows Calculation and Management, Trend Analysis, Advanced Risk Simulation and Analysis, Calculation of Success Probability Trends, Calculation and Management of required Project Time and Cost Buffers, Application of Corporate Norms, Management of many Parallel Budgets, Multiple WBS and many others.
Spider Project was and is used for management of many large scale programs in Russia, including $51bln construction program for 2014 Winter Olympic Games preparation.
The application areas where Spider Project is successfully used include Aerospace, Banking, Construction, Defense, Energy, Engineering, Infrastructure, Manufacturing, Metallurgy, Mining, Oil & Gas, Railways, Retail, Shipbuilding, Software Development, Telecommunications, Utilities, etc.
P6-Auditor - Display information from Primavera P6 audit tables in a user-friendly format
Unifier-Archiver - Extract and archive important documents and attachments from Primavera Unifier
Unifier-Loader - Load data into and out of Unifier via Excel
PCM-Loader - Import data into Primavera Contract Management with flexible and secure, template-driven Excel spreadsheets
PCM-Archiver - Extract and archive important documents and attachments from Primavera Contract Management
PCM-Unifier Migrator - Automatically transfer live and historical data from Primavera Contract Management to Primavera Unifier with ease
Create Radically Better Construction Schedules with ALICE Technologies
Use the power of AI to create construction schedules that reduce risk while cutting costs and build time. With ALICE, develop the ideal schedule during preconstruction -- or recover projects that are off schedule and over budget.
Again I have the same problem, but this time it is in Arabic. i will try to use the batch option. Thank you fot the help.
Serge
will give it a bash
Thanks planners
I did this before and no problems.
First export the activities with a empty log column to DBF.
Modify the empty log to what you want,
then import.
another way to do this is to use P3 batch,Its not so easy to start. you need take some time to study the P3 batch Manual.
you may contact www.P3china.com for some language tools,e.g. switch the interface to Chinese....
hope this helps
Hello Joel,
I had this problem a few times with Greek Characters. The best way for me was to import a log Column with the seccond language. But than you have a problem with characters and fonts.
This problem is caused by the 16-bit problem of P3. Therefore I wrote a small macro in Excel:
Function TranslateGreek()
Dim test, zwischen As String
iRow = 3
Worksheets("Activity").Activate
Do While Cells(iRow, 1) <> ""
Application.StatusBar = iRow - 3
If Cells(iRow, 19) <> "" Then
test = ""
For i = 1 To Len(Cells(iRow, 19))
zwischen = AscW(Mid(Cells(iRow, 19), i, 1))
test = test & IIf(zwischen < 256, ChrW(zwischen), ChrW(zwischen - 720))
Next i
Cells(iRow, 11) = test
End If
iRow = iRow + 1
Loop
End Function
The result of this translation looks funny in Excel,imported in P3 it still looks funny if I use Arial (Like: Âüñåéïò ÊëÜäïò), but as soon as I use a font for Greek as I used it for Windows 95, everthing is . So maybe this works in a similar way for Chinese (Maybe "720" must be changed into another number)
(I read from Column 19 and write into Column 11)
Regards Hannes
Hi Joel
A possibility is to put it in a custom data field, but you are unfortunately limited to 20 characters.
Jackie Gilliland