Excel Issues

Closed
formulaflunkie Posts 1 Registration date Wednesday February 10, 2010 Status Member Last seen February 11, 2010 - Feb 11, 2010 at 05:43 AM
rizvisa1 Posts 4478 Registration date Thursday January 28, 2010 Status Contributor Last seen May 5, 2022 - Feb 11, 2010 at 07:05 AM
Hello - HELP!!
What I am trying to do is set - up a way of tracking costs in a month.
So, if cell N52 contains a monetary value and A52 is 'January' put the cost into a cell on a separate workbook.
Does that make sense?
I really am not very experienced with formulas, so baby steps please.
Thanks very much.
Related:

1 response

rizvisa1 Posts 4478 Registration date Thursday January 28, 2010 Status Contributor Last seen May 5, 2022 766
Feb 11, 2010 at 07:05 AM
If N52 and A52 are in sheet1 and you want to put the value of cell N52 in sheet 2 in say cell b2

then you can write in cell b2 of sheet2 formula as

=IF(isnumber('Sheet1'!N52), 'Sheet1'!N52, "")
0