IF Statement quandary

Bazzza67

New Member
Joined
Apr 17, 2015
Messages
22
Hi Boardmembers

I am hoping someone can guide me.

I have an IF statement that looks to another reference worksheet tab in the same workbook. I want to drag the IF statement down, but instead of looking at the next concurrent reference cell, I want to look at every 6th cell in the reference worksheet.

Can this be achieved please?

Here is an example of the formula I have....

=IF(OR('Current and Pending Projects'!A222="",'Current and Pending Projects'!A222="Enter Client Name Here"),"",'Current and Pending Projects'!A222)

When I drag down, I want the formula to look at A228, then next line A234, then A240 etc etc

Thank you in advance
 

Excel Facts

Save Often
If you start asking yourself if now is a good time to save your Excel workbook, the answer is Yes
Here is an example of the formula I have....

=IF(OR('Current and Pending Projects'!A222="",'Current and Pending Projects'!A222="Enter Client Name Here"),"",'Current and Pending Projects'!A222)
We can create a formula that will do that, but it is important to know exactly what cell this initial formula is going in, so we can calculate the next row number based on the row number the formula is being placed in.
 
Upvote 0
Hi
Have attached an image
 

Attachments

  • Excel.jpg
    Excel.jpg
    110.6 KB · Views: 3
Upvote 0
Hi
Have attached an image
That really doesn't answer my question.
I want to know what the exact cell address of the cell that you are putting this formula in:
Excel Formula:
=IF(OR('Current and Pending Projects'!A222="",'Current and Pending Projects'!A222="Enter Client Name Here"),"",'Current and Pending Projects'!A222)
That is all I need to know.
 
Upvote 0
OK, place this formula in cell C2 and copy down to cell C20:
Excel Formula:
=IF(OR(INDIRECT("'Current and Pending Projects'!A"&((ROW()-2)*6+222))="",INDIRECT("'Current and Pending Projects'!A"&((ROW()-2)*6+222))="Enter Client Name Here"),"",INDIRECT("'Current and Pending Projects'!A"&((ROW()-2)*6+222)))
 
Upvote 0

Forum statistics

Threads
1,214,946
Messages
6,122,401
Members
449,081
Latest member
JAMES KECULAH

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