Populate one cell with x if another cell contains data/

RodneyW

Active Member
Joined
Sep 24, 2010
Messages
419
Office Version
  1. 2013
Platform
  1. Windows
I need a formula for cell Q8 that looks at cell E8. If E8 ispopulated, place an x in cell Q8. If itmakes a difference, cell E8 has a formula that reads from another tab withinthe same spreadsheet. Thanks in advance

 

Excel Facts

When they said...
When they said you are going to "Excel at life", they meant you "will be doing Excel your whole life".
Try:
Code:
=IF(E8<>"","x","")
 
Upvote 0
How about
=IF(E8<>"","X","")
 
Upvote 0
Fluff, same issue as with Joe. Thanks for helping find a solution
 
Upvote 0
Fluff, same issue as with Joe
Is there some issue still? I don't see anything posted to that effect.

If it is not working out, it probably means that the formula you have in cell E8 is actually returning something (like a blank space).
What exactly is the formula in cell E8?
 
Upvote 0
Formula in cell E8 is this: =Stations!I49
The formula in Stations I49 is: =SUMIF(G8:G46,"x",E8:E46)
 
Upvote 0
As you haven't said what the issue is, this is a guess
=IF(E8>0,"X","")
 
Upvote 0
A SUMIF function would return a number, not a blank or empty string.
Perhaps you have a Custom Format hiding the zeroes.

Try:
Code:
=IF(E8>0,"x","")
Otherwise, please give us an example of one that isn't working.
(Tell us the value in I49 and what this formula is returning, and what you are expecting).
 
Last edited:
Upvote 0

Forum statistics

Threads
1,214,643
Messages
6,120,702
Members
448,980
Latest member
CarlosWin

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