I am sure this is just me not understanding where to put the parenthesis correctly but I am having a difficult time making this work.
I use VLOOKUP because I always have the item# of the product in the left hand column
For the most part these spreadsheets are always number values
I like using IF so that I can return specific results if the product is or is not found
Using the item# with VLOOKUP, I am pulling from a column of one spreadsheet 'Latest' and subtracting the value of whatever is in the column of another spreadsheet 'Previous'
This is how I set it up, but it is not working -
=SUM(IF((VLOOKUP($A3,Latest!$A:$BY,8,FALSE)="","",VLOOKUP($A3,Latest!$A:$BY,8,FALSE)))-(IF((VLOOKUP($A3,Previous!$A:$BY,8,FALSE)="","",VLOOKUP($A3,Previous!$A:$BY,8,FALSE)))
I use these two formulas successfully so I am trying to combine the ideas:
=IF(VLOOKUP($A3,Latest!$A:$BY,8,FALSE)="","",VLOOKUP($A3,Latest!$A:$BY,8,FALSE))
=SUM((VLOOKUP($A3,Latest!$A:$BY,8,FALSE)-(VLOOKUP($A3,Previous!$A:$BY,8,FALSE))))
For the end result, I want the cell value in the resulting worksheet to show as blank unless there is an actual value that would come from the SUM formula. I have way too many zeros and it makes it difficult to notice the the real changes in value
Can anyone help me combine this to work?
Bookmarks