Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
This may be simple for someone
Cell A1 = $3,500 Cell A2 = $2,000 example formula =IF(A1="","",IF(A1=A2,"ok - matched",IF(A1-A20,A1-A2&" overstated","A2-A1&" understated"))) This if statement provides the answer -- 1500 overstated But I want the answer to be -- $1,500 overstated Is there a way I can build the formatting of the dollar amount into the IF statement, or is there a way I can enter a custom format that allows for the varying text depending on the sum result. thanks for your help |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
You could use the text function
TEXT(A1-A2,"$#,##0)&" overstated" "tmp4" wrote: This may be simple for someone Cell A1 = $3,500 Cell A2 = $2,000 example formula =IF(A1="","",IF(A1=A2,"ok - matched",IF(A1-A20,A1-A2&" overstated","A2-A1&" understated"))) This if statement provides the answer -- 1500 overstated But I want the answer to be -- $1,500 overstated Is there a way I can build the formatting of the dollar amount into the IF statement, or is there a way I can enter a custom format that allows for the varying text depending on the sum result. thanks for your help |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Left out a quote
TEXT(A1-A2,"$#,##0")&" overstated" "JMB" wrote: You could use the text function TEXT(A1-A2,"$#,##0)&" overstated" "tmp4" wrote: This may be simple for someone Cell A1 = $3,500 Cell A2 = $2,000 example formula =IF(A1="","",IF(A1=A2,"ok - matched",IF(A1-A20,A1-A2&" overstated","A2-A1&" understated"))) This if statement provides the answer -- 1500 overstated But I want the answer to be -- $1,500 overstated Is there a way I can build the formatting of the dollar amount into the IF statement, or is there a way I can enter a custom format that allows for the varying text depending on the sum result. thanks for your help |
#4
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Thanks, I'l go and try that now
"JMB" wrote: Left out a quote TEXT(A1-A2,"$#,##0")&" overstated" "JMB" wrote: You could use the text function TEXT(A1-A2,"$#,##0)&" overstated" "tmp4" wrote: This may be simple for someone Cell A1 = $3,500 Cell A2 = $2,000 example formula =IF(A1="","",IF(A1=A2,"ok - matched",IF(A1-A20,A1-A2&" overstated","A2-A1&" understated"))) This if statement provides the answer -- 1500 overstated But I want the answer to be -- $1,500 overstated Is there a way I can build the formatting of the dollar amount into the IF statement, or is there a way I can enter a custom format that allows for the varying text depending on the sum result. thanks for your help |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
not sure if I'm using the correct formula for the result I want? | New Users to Excel | |||
not sure if I'm using the correct formula for the result I want | New Users to Excel | |||
not sure if I'm using the correct formula for the result I want | New Users to Excel | |||
Formula is correct, but result will not show | Excel Worksheet Functions | |||
Formula Result Correct but value in the cell is wrong | Excel Worksheet Functions |