Filling Cells With 1 or Nothing

sm2200

Board Regular
Joined
Feb 25, 2002
Messages
90
I have a vertical column of 100 cells. Assume it is Column S and the cells are from S1 to S100. The top cells in column S will have a number in them and the rest will be blank . In column T , cells T1 to T100, I wish to place a formula that will have a 1 appear in the cell if there is a number in the adjoining cell in column S and be blank if the adjoining cell in column S is blank. I tried the following fomula in cell T1 and copied it down in the rest of the cells in column T, but it didn't work. The formula I put in T1 was ;
=IF(S1=" "," ",1) How should I solve my problem.
Thanks,
Sam Marx

Please disregard the question at the end regarding ACN
 

Excel Facts

How to total the visible cells?
From the first blank cell below a filtered data set, press Alt+=. Instead of SUM, you will get SUBTOTAL(9,)
try to do one of the following

Remove the space in your forulas between the quotes. Space is not blank

so do 2 quotes together.

2nd, you can change your formula to:

IF(isblan(S1),"",1)
 
Upvote 0

Forum statistics

Threads
1,224,564
Messages
6,179,548
Members
452,927
Latest member
rows and columns

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