Formula issue
Hi Brain Trust
We have a formula set up to report when two columns don't have the same drop-downs selected.
=IF([Candidate Compliance & Training Check]@row = [Job Compliance & Training Requirements]@row, "Low", "High")
The team now want to use the following symbols
What or how can I set up a formula that will give me :-
Empty symbol when Candidate Compliance is empty
Full When both columns Match
and half when the drop down counts are there but arent exact
Using the 25% and 75% would be great but dont see how as each row will have different number if requirements
Answers
-
This would have to be if Candidate Compliance is 25 % of the contents of Job Compliance ect ???
-
Have a go at changing the column type for "CC Check" to this one:
Then amend your formula to:
=IF(ISBLANK([Candidate Compliance & Training Check]@row),"Empty",IF(
[Candidate Compliance & Training Check]@row = [Job Compliance & Training Requirements]@row, "Full", "Half"))
Does that work for you?
Kind regards
Debbie
Debbie Sawyer
CSSO (Chief Smartsheet Solutions Officer)
Smarter Business Processes
Smartsheet Community Champion & Ambassador
Book your free consultation Consultancy | Training | Smarter Apps | API Integration
-
Alternatively if you wanted to use ALL the options you would need 3 helper columns (which you could then hide).
"Count of Job Compliance Entries" (column name) with a formula of
=COUNTM([Job Compliance & Training Requirements]@row)
"Count of Candidate Compliance Entries" (column name) with a formula of
=COUNTM([Candidate Compliance & Training Check]@row)
These two columns would give you the number of Multi-select entries chosen for each row.
Then you'd have a 3rd helper column with "% difference" (column name)
=[Count of Job Compliance Entries]@row/[Count of Candidate Compliance Entries]@row
Which you'd then display as a % formatted column.
Then your formula could be:
=IF(ISBLANK([Candidate Compliance & Training Check]@row),"Empty",IF([Candidate Compliance & Training Check]@row = [Job Compliance & Training Requirements]@row, "Full", IF(AND([% difference]@row>0,[% difference]@row<0.5),"Quarter",IF(AND([% difference]@row>=0.5,[% difference]@row<0.75),"Half","Three Quarter"))))
The issue with this is that it is just counting the entries and not comparing the values of the entries. However it will only mark as FULL if both columns are an exact match…
Might work!?
Kind regards
Debbie
-
Hi Debbie
Thanks that has worked well, Another Question - is there any formula that could be used to return what the missing values are EG-
A third column that would return any value that is in the Job Compliance but not in the Candidate Compliance?
so in the sample below - third column would report HSSE Drivers license, CSE ect ect
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Smartsheet Customer Resources
- 64.2K Get Help
- 419 Global Discussions
- 221 Industry Talk
- 461 Announcements
- 4.8K Ideas & Feature Requests
- 143 Brandfolder
- 143 Just for fun
- 58 Community Job Board
- 463 Show & Tell
- 32 Member Spotlight
- 1 SmartStories
- 300 Events
- 39 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!