Text box format in a Report

L

Lin

Hi,

I have a text box in a report where I would like to change the number
format(%) depends on other text box value.
My report looks like the following
Item Jan Feb Mar...........
a 2 3 20
b .07 .25 .75

I would like the second row to be in % when the Item =b.How do I do that in
report.

Any help really appreciate.

Thanks
 
K

KARL DEWEY

Use an IIF statement --
=IIF([Item]="b", [FieldName]*100 & "%", [FieldName])
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top