all
Im trying to find a way to pull data from multiple worksheets based on wheter the cell is blank or not.
For example
if "worksheet A has a number in cell a23" then I want that number to be entered into the a23 cell on worksheet d, but if a23 is blank then I want to use the number in cell a23 of worksheet b to be entered into worksheet d, and so on ...
Please let me know if this is clear enough. So far I have came up with this nested if function
=IF('worksheetB'!E9,'worksheetB'!E9,IF('worksheetB="",'worksheetc'!E23,IF('worksheetc'!E23="",'worksheetde21)))
which , which will not work past 2 workbooks.
Thank you