Sign in to join the conversation:
Hi,
I need suggestions on how to count string of text on a column. For example, i need to count how may GRC are there on the sample below:
GRC
Aer, GRC
Aer, CDIR, GRC
HTM
etc.
Thank you!
=COUNTIF([Column1]:[Column1], FIND("GRC", @cell) > 0)
Awesome! thank you for saving me the trouble!
Follow up question; if I find "GRC" in the above example and wanted to automatically check a checkbox column, what would the formula be?
Just a simple if statement inside of the checkbox.
If([Output from previous formula]1>0,1,0)
Hi! I'm fairly new to SmartSheets but have been trying a number of things that havent yet worked. I want to be able to show for each parent row, the number of child rows completed as a %. So for the parent row Process Overview there are 7 tasks and 6 tasks are complete so I want it to show as 90%. Can anyone help me?
I have a column named Territory, where I am trying to write a formula to populate it when names are chosen from an adjacent drop-down list column called Employee Attendee. If more than one name is selected from the Employee column, I would like their respective territories to populate in the Territory field, separated by a…
Hello, I am trying to find the average audit score for a range of percentages between two dates. There are divider rows for organization by month. I have been trying to utilize the following formula but continue to get #DIVIDE BY ZERO for an answer: =AVG(COLLECT([Audit Score]:[Audit Score], [Date of Chat]:[Date of Chat],…