Variable decimal format: displayed value differs from the value used when referenced in another formula

yellowcedar

New Member
Joined
Jan 26, 2024
Messages
6
Office Version
  1. 2021
Platform
  1. Windows
Currently I am trying to have variable decimal formats displayed across a range of cells. The amount of decimals will depend on how large the numbers are. The numbers range from 100,000.00 to .000000001. I can get this formula to work properly and it displays the decimals as I have anticipated, however when I now try to reference any of these cells elsewhere it always sees the cell as having a value of 1.

I have used the following formula in each cell within my range:
Excel Formula:
=IF(VLOOKUP(C9, Totals!$A$2:$P$6251, 2, FALSE) >= 100, TEXT(VLOOKUP(C9, Totals!$A$2:$P$6251, 2, FALSE), "###,##.00"),IF(VLOOKUP(C9, Totals!$A$2:$P$6251, 2, FALSE) >= 0.1, TEXT(VLOOKUP(C9, Totals!$A$2:$P$6251, 2, FALSE), "###,##.00000"),IF(VLOOKUP(C9, Totals!$A$2:$P$6251, 2, FALSE) >= 0.0001, TEXT(VLOOKUP(C9, Totals!$A$2:$P$6251, 2, FALSE), "###,##.00000000"),IF(VLOOKUP(C9, Totals!$A$2:$P$6251, 2, FALSE) >= 0.000000000000000001, TEXT(VLOOKUP(C9, Totals!$A$2:$P$6251, 2, FALSE), "###,##.0000000000"),""))))

For example if Cell A9 has a value of 100 and cell Q9 has the above formula in it, and I try to do an set B9 to =PRODUCT(A9,Q9) it will return a value of 100 for B9. The value displayed in cell Q9 is 10,000.00 and so the result should be 1,000,000.00 in B9. It seems like it is displaying one value but calculating other formulas using another hidden value.

What am I doing wrong here? and is there a better way for build this formula that would prevent this?
 

Excel Facts

Highlight Duplicates
Home, Conditional Formatting, Highlight Cells, Duplicate records, OK to add pink formatting to any duplicates in selected range.
to clarify I am trying to accomplish the following:

use VLOOKUP to search for a name on another sheet and export that specific column's value into the current sheet's cell range of Q9:Q20
Excel Formula:
VLOOKUP(C9, Totals!$A$2:$P$6251, 2, FALSE)

then

In this range of cells (Q9:Q20)
set any number format to 2 decimals if that number is over 100
set any number format to 5 decimals if that number is over 0.1
set any number format to 8 decimals if that number is over 0.0001
set any number format to 10 decimals if that number is over 0.000000000000000001
(I have attempted the nested IF formula in my post above)

Multiply the above values in cells Q9:Q20 by cells A9:A20
and display this in cells B9:B20

Problem: Cells B9:B20 display the wrong value. Since it is multiplying the data in A always by 1 instead of actually multiplying by the calculated value that my formula is outputting
 
Upvote 0
Welcome to the MrExcel board!

What am I doing wrong here?
The issue is that the TEXT function (unsurprisingly) returns a text value, not a number. So the result of your formula in Q9 is a text value. The PRODUCT function ignores text values so =PRODUCT(A9, Q9) ignores Q9 (text value) and that is why it is just returning the A9 value.
Try either of these formulas in B9 instead. They will "coerce" the text value that looks like a number back into an actual number so the multiplication can take place.

Excel Formula:
=A9*Q9
Excel Formula:
=PRODUCT(A9,--Q9)
 
Upvote 0
Solution
Welcome to the MrExcel board!


The issue is that the TEXT function (unsurprisingly) returns a text value, not a number. So the result of your formula in Q9 is a text value. The PRODUCT function ignores text values so =PRODUCT(A9, Q9) ignores Q9 (text value) and that is why it is just returning the A9 value.
Try either of these formulas in B9 instead. They will "coerce" the text value that looks like a number back into an actual number so the multiplication can take place.

Excel Formula:
=A9*Q9
Excel Formula:
=PRODUCT(A9,--Q9)
Thanks very much. Yeah all I had to do was change B9 to =PRODUCT(A9*Q9)
 
Upvote 0
Thanks very much. Yeah all I had to do was change B9 to =PRODUCT(A9*Q9)
PRODUCT there is pointless
A9*Q9 already is a product so your formula is like saying =PRODUCT(56). It is just 56
As I mentioned above, just use
=A9*Q9
 
Last edited:
Upvote 0

Forum statistics

Threads
1,215,072
Messages
6,122,966
Members
449,094
Latest member
Anshu121

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