Formatting

P

Pebbs

How can I format the following so the output will be % vs. currency?
=IIf(([Method])="Percent",([Percent]),IIf(([Method])="Amount",([Amount]),''))
 
D

Duane Hookom

How about:
=IIf(([Method])="Percent",Format([Percent],"Percent"),IIf(([Method])="Amount",Format([Amount],"Currency"),Null))
 

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