days of the week in sentence

cortonn

New Member
Joined
Sep 30, 2014
Messages
4
Hi all.

I have 7 checkbox, one for each day of week.

I have 7 cells with true or false (vinculated from checkbox).

I need to concatenate in a sentence selected days of the week (text), but considering the commas and final dot.

Can I do it with one or more functions?

Thanks!
 

Excel Facts

Control Word Wrap
Press Alt+Enter to move to a new row in a cell. Lets you control where the words wrap.
Yes! But.......one but, before the last day, if it´s more than one, I want to add "and" instead of comma. This is the problem that I have.

By the way, I have only the "true" and "false" values, only, ​​in a row, not a column, from the check boxes marked, not from other cells. It is a problem?
 
Upvote 0
Uhm... well....

I don't know how to "paste" the data from my file, but it's something like:

https://www.dropbox.com/s/nsod44z1q6c0n8u/01.JPG?dl=0


What I need to do is a little more complicated, something like "Monday, Tuesday and Saturday." or "Wednesday." where there is only one or "Monday, Tuesday, Thursday and Sunday."

Not all with commas or all with "and".

PD: Thanks, especially, to understand my English xD
 
Upvote 0
OK - maybe this then?

p.s. your English is good.

Excel Workbook
LMNOPQRS
1SunMonTueWedThuFriSatResult
2TRUETRUETRUETRUETRUETRUETRUESun, Mon, Tue, Wed, Thu, Fri and Sat.
3TRUEFALSEFALSEFALSEFALSEFALSEFALSESun.
4FALSEFALSEFALSEFALSEFALSEFALSETRUESat.
5TRUEFALSETRUEFALSETRUEFALSETRUESun, Tue, Thu and Sat.
6FALSETRUEFALSETRUEFALSETRUEFALSEMon, Wed and Fri.
7FALSEFALSEFALSEFALSEFALSEFALSEFALSE
Sheet1
 
Upvote 0
Give this formula a try...

=TRIM(SUBSTITUTE(MID(IF(B1,", "&A1,"")&IF(B2,", "&A2,"")&IF(B3,", "&A3,"")&IF(B4,", "&A4,"")&IF(B5,", "&A5,"")&
IF(B6,", "&A6,"")&IF(B7,", "&A7,""),2,99)&" ",","," and",MAX(1,COUNTIF(B:B,TRUE)-1)))&IF(COUNTIF(B:B,TRUE),".","")
 
Upvote 0
Thanks both !! Thank you very much.

Both solutions work very well. I adapted the functions to Spanish and cells, and they are what I needed.

Although, to use the second, I need to have a range with the names of the days.

A beer for both!
 
Upvote 0

Forum statistics

Threads
1,214,983
Messages
6,122,591
Members
449,089
Latest member
Motoracer88

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