If data is on one sheet, linking to another

G

Guest

I have multiple sheets in a workbook.

One sheet (call it Sheet A) has data that may or may not be inputted in
specific areas.
Another sheet (call it Sheet B) takes this data and populates cells that are
in Sheet B.

I want some of the data from Sheet A, only if it is has been added, to
populate Sheet B and if it is not populated, I want it to refer to another
cell on Sheet A or to say "not provided".

Is this possible? (or make any sense!)
 
A

Ardus Petus

=IF(SheetA!A1="",SheetA!B1,SheetA!A1)
or:
=IF(SheetA!A1="","not provided";SheetA!A1)

HTH
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top