cancel
Showing results for 
Search instead for 
Did you mean: 

Convert A Number To Blank

Former Member
0 Kudos

Is it possible to convert a number to blanks (for exporting purposes) ? I need for the column to have blanks instead of zeros.

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Hello,

Right click your field-->Select 'Format Field'->Common tab->Check suppress-->click on formula box infront of suppress.

Now in that formula editor, right the condition which will be always true for the number like :

{Customer.Customer ID}>=0

This should supress all the numbers to blank.

Hope this helps .

Regards,

Chinmay Athavale

Former Member
0 Kudos

Chinmay,

Thanks ! ! ! That worked . . .

Answers (1)

Answers (1)

Former Member
0 Kudos

Substitue your field names

if {Orders.Order ID} = 0 then totext (" ") else totext ({Orders.Order ID})

This should work, if you don't care about changing the number to text.

Former Member
0 Kudos

V361,

Thanks Chinmay solution worked . . . Thanks anyway ! ! !