Sign in to join the conversation:
If cell A3 contains "ABC" then enter "ABC" in cell A1.
Can someone help me do this in smartsheet?
I tried using =If(find("ABC",A3,)="ABC","ABC","X") but its not working.
Thank you
find returns the position at which the string is found
=If(find("ABC",A3,)=1,"ABC","X")
OK what will confirm if there is that text .
For example Credit data ABC 145.... it needs to confirm if there is abc in the string of text.
Thanks
Hi there, are you working in Excell or in Smartsheets? Smartsheets does not refer to columns by A, B, C as Excell or Google Sheets does. To reference a column you have to use its column name.
Rjudenberg's solution will work, but you have to modify it with the Smartsheet Column Names.
=If(find("ABC", [Column A Name]3)=1,"ABC","X")
I am working in smartsheet thank you both for clarifying. I actually need to change the =1 to a >0 and make sure I match the exact text. My cell was in all caps and I didnt use that the actual formula.
Thank you both
=If(find("ABC", [Column A Name]3)>0,"ABC","X")
This should work You just need to replace the Column A Name with your own column name.
Thank you Smartsheet Community! I love you!
Hello , I am looking for help to write a formula that will check a box if certain criteria are met. I have students that are signing up for a class and they need the previous class or classes as prerequisites. for example i have class 1, class 2 , class 3 and class 4. each higher number class needs to have completed the…
Hello, I am looking for formula help where I want to return the earliest date in a range for different workstreams groups on a project. The source sheet is formatted as a date field, and the formula used below is returning a 0 no matter what I do. Any suggestions? =MIN(COLLECT({Project Plan - start date}, {Project Plan…
I currently have 14 sheets with the following columns: Batch # and Reviewer I use an Index Distinct formula to acquire the unique batch numbers from all 14 sheets and put them into 14 columns on the 'metrics' sheet. I then use another index distinct to get a list of all the unique batch numbers into one 'Unique Batch…