Checking cell based on value of another cell on another tab

lbm12345

New Member
Joined
Dec 3, 2018
Messages
2
Hello guys,

I'm having the following issue:

Picture1.png




On the tab "Auditierte Normelemente" I would like to have an overview of which elements of an audition are being covered.

So, if the topic 4. Kontext der Organisation (B7) got covered in the year 18-19 (Column C), I would like an X to appear there (C7).

This information will come from another tab (2018-2019 PCW, in blue) which looks like this:

Picture2.png


So, if 4. Kontext der Organisation is found on column G or on column M or on column S, the X should appear on the cell C7 of the tab "Auditierte Normelemente" and so on for the other topics on column B and later also for the years 19-20 and 20-21.


Do you guys have an idea for this? I've tried the IF function but it gets huge and very complex and doesn't work very precisely.

I would appreciate any help, I'm a newbie in Excel.

Thanks a lot!


Lucas
 

Excel Facts

Format cells as time
Select range and press Ctrl+Shift+2 to format cells as time. (Shift 2 is the @ sign).
if it is indetically written - you could use a countIF()
So, if 4. Kontext der Organisation is found on column G or on column M or on column S, the X should appear on the cell C7 of the tab

B7 has 4. Kontext der Organisation

=COUNTIF('2018-2019 PCW'!C:C , B7) > 0
this sort of thing
ADD to an OR(
COUNTIF('2018-2019 PCW'!C:C , B7) > 0, COUNTIF('other sheet'!C:C , B7) > 0, =COUNTIF('other sheet'!C:C , B7) > 0)
now if finds any it will count 1 or possible if its on all sheets 3
so will be TRUE

=IF ( OR(....) , "X", "")


I'm not sure all your sheets are clear to me
But hopefully you get the idea

 
Upvote 0
Cross posted https://www.excelforum.com/excel-pr...-on-value-of-another-cell-on-another-tab.html

While we do not prohibit Cross-Posting on this site, we do ask that you please mention you are doing so and provide links in each of the threads pointing to the other thread (see rule 13 here along with the explanation: Forum Rules).
This way, other members can see what has already been done in regards to a question, and do not waste time working on a question that may already be answered.
 
Upvote 0
if it is indetically written - you could use a countIF()


B7 has 4. Kontext der Organisation

=COUNTIF('2018-2019 PCW'!C:C , B7) > 0
this sort of thing
ADD to an OR(
COUNTIF('2018-2019 PCW'!C:C , B7) > 0, COUNTIF('other sheet'!C:C , B7) > 0, =COUNTIF('other sheet'!C:C , B7) > 0)
now if finds any it will count 1 or possible if its on all sheets 3
so will be TRUE

=IF ( OR(....) , "X", "")


I'm not sure all your sheets are clear to me
But hopefully you get the idea



Thanks! That's how it looks like now:

=IF(OR(COUNTIF(' 2018-2019 PCW'!$G$5:$G$26;B7)>0; COUNTIF(' 2018-2019 PCW'!$M$5:$M$26;B7)>0; COUNTIF(' 2018-2019 PCW'!$S$5:$S$26;B7)>0);"X";"")
 
Upvote 0

Forum statistics

Threads
1,214,908
Messages
6,122,187
Members
449,071
Latest member
cdnMech

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top