What formula do I use?

livinlavidaloca

New Member
Joined
Aug 9, 2022
Messages
7
Office Version
  1. 365
Platform
  1. Windows
  2. Web
I am stuck, trying to work out the formula for this spreadsheet summary and would really appreciate some help!
  • I want to create a formula which will leave a SINGLE tick in H3 if there are any non-empty cells in 'HMN.MBY' (the name of the tab I am extracting data from), G3:G34 (the cells within the sheet where I am extracting data from).​
  • Unfortunately, the only valid formula I have found so far replicates the column positioning of the non-empty cells from 'HMB.MBY, G3:G34'. It displays the ticks in order of which cells are non-empty in 'HMN.MBY'.​
  • What I actually want to do is have a single tick in H3 if there are any non empty cells in G3:G34 from 'HMN.MBY'.​
Hope that makes sense, but feel free to ask if you need more information.

Thank you in advance!!
1660040339028.png
 

Excel Facts

Fastest way to copy a worksheet?
Hold down the Ctrl key while dragging tab for Sheet1 to the right. Excel will make a copy of the worksheet.
Fair enough :)
.. but TEXTJOIN specifying no delimiter - might as well just use CONCAT again?

=IF(CONCAT('HMN.MBY-515.628'!G3:G34)="","","✓")
I wish I'd have asked to begin with but would there be a way of changing the CONCAT formula to ignore cells within the range which say 'N/A'?
 
Upvote 0
Can you confirm whether they have a Text value of "N/A" or a formula Error value of #N/A?
If they are Text N/A values then try
Excel Formula:
=IF(SUBSTITUTE(CONCAT('HMN.MBY-515.628'!G3:G34),"N/A","")="","","✓")

If they are formula error values try
Excel Formula:
=IF(CONCAT(IFNA('HMN.MBY-515.628'!G3:G34&"",""))="","","✓")
 
Upvote 0

Forum statistics

Threads
1,214,523
Messages
6,120,028
Members
448,940
Latest member
mdusw

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