Forum Discussion
stephbuch11
Aug 04, 2020Copper Contributor
Need some help with a formula
I need a column to allow me to Add multiple dates in 1 cell, then total the amount of dates in another cell. See the attached file for reference on what I need. Example Dates: in cell B: 1, 5, 12, ...
HansVogelaar
Aug 04, 2020MVP
Format C8 as General instead of as Text, and enter the following formula in C8:
=LEN(B8)-LEN(SUBSTITUTE(B8,",",""))+1
stephbuch11
Aug 04, 2020Copper Contributor
Sweet! That totally worked thank you!