I need some help with a formula I am using to pull data from another worksheet that has a formula in it. Once the source cell has a value assigned my nested if formula works correctly however it is returning a value when the source cell is blank (still as the formula in it waiting to get the data).
Using the formula below returns a value that is not correct instead of a blank cell:
=IF('Training Wrap Up'!G5=100%,5,IF('Training Wrap Up'!G5>89%,4,IF
('Training Wrap Up'!G5>79%,3,IF('Training Wrap Up'!G5>69%,2,IF
('Training Wrap Up'!G5<69%,1,"")))))
Using the following formula returns a blank cell until the source cell has data then returns the true value but I have a wider range than just the "=" formula below:
=IF('Training Wrap Up'!G5=100%,5,IF('Training Wrap Up'!G5=90%,4,IF
('Training Wrap Up'!G5=80%,3,IF('Training Wrap Up'!G5=70%,2,IF
('Training Wrap Up'!B6<69%,1,"")))))
I would like to have a blank cell until G5 has a value showing.