Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Linked Spreadsheet

Status
Not open for further replies.

swan717

MIS
May 16, 2001
13
US
Hi:

I am trying to figure out how to change a negative linked number to a positive number, without having to manual change it.

Can anyone help?

Thanks
 
If you have a basic cell link (ie =sheet1!A1 etc), just change the formula to =A1*-1
or, if the nuimber may not always be -ve, =if(sheet1!A1<0,sheet1!A1*-1,sheet1!A1)
Rgds
~Geoff~
 
Or, simpler still if you want to invert the number whether positive or negative (which is what you usually want to do), try =-A1

HTH

Ben
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top