Zoso3333

New Member
Joined
Jul 27, 2017
Messages
3
I have a field that is simply calculating the difference between two other fields. Although the results are negative numbers, positive numbers or 0, the person who requested the report wants to see the absolute value. So I used ABS(c2-e2).

They also wanted icon sets (the arrows), so they can visualize the positive and negative.. Over 0 up arrow, below zero down arrow, 0 horizontal. The issue is that using ABS they are all positive numbers.. any ideas
 

Excel Facts

Convert text numbers to real numbers
Select a column containing text numbers. Press Alt+D E F to quickly convert text to numbers. Faster than "Convert to Number"
=IF(c2-e2>0,"up arrow"&ABS(c2-e2),IF(c2-e2=0,"Horizontal"&ABS(c2-e2),IF(c2-e2<0,"Down arrow:"&ABS(c2-e2),"")))

Replace the "Up Arrow", "Horizontal" and "Down Arrow" with the appropriate icons... format as needed if you want it to actually show the absolute value...

Steve
 
Upvote 0
I have a field that is simply calculating the difference between two other fields. Although the results are negative numbers, positive numbers or 0, the person who requested the report wants to see the absolute value. So I used ABS(c2-e2).

They also wanted icon sets (the arrows), so they can visualize the positive and negative.. Over 0 up arrow, below zero down arrow, 0 horizontal. The issue is that using ABS they are all positive numbers.. any ideas

An alternative
Don't use ABS in your formula. Use =C2-E2 and format the cells as Number, negative values as red.
Then go to to CF and use the icons (arrows) changing the Type from Percent to Numbers
In Value put
>0
>=0

M.
 
Upvote 0

Forum statistics

Threads
1,214,965
Messages
6,122,500
Members
449,090
Latest member
RandomExceller01

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top