Forum Discussion

Wr1nkly's avatar
Wr1nkly
Copper Contributor
Dec 29, 2023
Solved

Showing two Values in single cell (+/- change)

This seems like an easy fix or maybe not but i just cant figure it out.    I am trying to show the %, Amount, or $ change from one cell to another. While retaining the current Value.   For Exampl...
  • HansVogelaar's avatar
    Dec 29, 2023

    Wr1nkly 

    You cannot do this in B1 itself.

    I'd create a formula in column C. In C1:

     

    =TEXT(B1, "$0")& " (" & TEXT(B1-A1, "+$0;-$0") &")"

     

    This can be filled down. You can use a similar format for cells with a general number or a percentage, but you'll have to create a separate formula for each of those.

Resources