PDA

Click to See Complete Forum and Search --> : [RESOLVED] Format something in formula field


DubweiserTM
Jan 17th, 2007, 10:03 AM
Hi everybody !

I do this in Formula Field: "Nombre page: " & TotalPageCount and the result in preview is Nombre page: 2.00

How can I format the "TotalPageCount" to appears like this Nombre page: 2 ?

Thanks in advance !

brucevde
Jan 17th, 2007, 10:16 AM
"Nombre page: " & ToText(TotalPageCount,0)

DubweiserTM
Jan 17th, 2007, 10:20 AM
"Nombre page: " & ToText(TotalPageCount,0)Thanks ! It's what I want !