Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes! Register now.
I am looking for some assistance. I have a list of body shops and appraisers. I want to create a calculated column that identifies and labels them accordingly. Essentially if they are in the order of "Word, Word" I want it to label as an <Appraiser> - all else, <Not an appraiser>.
Any Ideas?
Body Shop East, 1 |
Body Shop East, 2 |
Chris, Kyle |
Body Shop East, 3 |
Body Shop East, 4 |
Bob, Jim |
Body Shop East, 6 |
Solved! Go to Solution.
Maybe something like:
Column = VAR _right = RIGHT ( Table1[Column1], 1 ) RETURN IF ( ISERROR ( ISNUMBER ( VALUE ( _right ) ) ), "Appraiser", "Not an Appraiser" )
Proud to be a Super User!
Maybe something like:
Column = VAR _right = RIGHT ( Table1[Column1], 1 ) RETURN IF ( ISERROR ( ISNUMBER ( VALUE ( _right ) ) ), "Appraiser", "Not an Appraiser" )
Proud to be a Super User!
Works great. Thank you!