• Hi All

    Please note that at the Chandoo.org Forums there is Zero Tolerance to Spam

    Post Spam and you Will Be Deleted as a User

    Hui...

  • When starting a new post, to receive a quicker and more targeted answer, Please include a sample file in the initial post.

IF question references and empty cells

NoobySE

New Member
Hi, I try to create a function saying

in A6 the value of 'other sheet'! B2 should be shown; if 'other sheet'! B2 is empty, show 'other sheet'! A2 instead. but for some reason I don't get my head around that one last corner to get there :( any nudge is appreciated.
 
Hi NoobySE ,


Use the function ISBLANK to get what you want.


=IF(ISBLANK('other sheet'!B2),'other sheet'!A2,'other sheet'!B2) should do the job.


Narayan
 
Back
Top