Autofill Nonconsecutive with formula

Jasuan

New Member
Joined
Jan 16, 2014
Messages
34
Office Version
  1. 365
Platform
  1. Windows
First time poster.

I have the following formula: =IF(DATA!B69=0,DATA!B69,(DATA!A202&" "&DATA!B69))
The first entry is in Column BO; Row 2. The next entry would go into Column BS; Row 2.
The formula in the second entry should be =IF( DATA!B72 =0,DATA!B72,(DATA!A202&" "&DATA!B72))

As I have 40 entries for this specific formula (equally spaced but non-contiguous) I would like if I could write a formula to have it auto fill it or a VBA code to do it.

Any help is appreciated in advance.
 

Excel Facts

What does custom number format of ;;; mean?
Three semi-colons will hide the value in the cell. Although most people use white font instead.
Hi

Welcome to the MrExcel forum.

Try this in BO2 :-
Code:
=IF(INDIRECT("DATA!$B"&69+((COLUMNS($BO:BO)-1)/4)*3)=0,INDIRECT("DATA!$B"&69+((COLUMNS($BO:BO)-1)/4)*3),DATA!$A$202&" "&INDIRECT("DATA!$B"&69+((COLUMNS($BO:BO)-1)/4)*3))[code]

drag across to BR2.
Then select BO2 to BR2 and drag across as far as required.

hth
 
Last edited:
Upvote 0
Hi

Welcome to the MrExcel forum.

Try this in BO2 :-
Code:
=IF(INDIRECT("DATA!$B"&69+((COLUMNS($BO:BO)-1)/4)*3)=0,INDIRECT("DATA!$B"&69+((COLUMNS($BO:BO)-1)/4)*3),DATA!$A$202&" "&INDIRECT("DATA!$B"&69+((COLUMNS($BO:BO)-1)/4)*3))[code]

drag across to BR2.
Then select BO2 to BR2 and drag across as far as required.

hth[/QUOTE]

Mike,

    Thanks for the hospitality and quick response. This worked like a charm! Now I am getting familiar with the INDIRECT function and learning how to write a formula like this for future needs.
 
Upvote 0

Forum statistics

Threads
1,220,965
Messages
6,157,119
Members
451,398
Latest member
rjsteward

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