Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
lcasey
Post Prodigy
Post Prodigy

Create a column that only returns SLS #

Hello,

 

How can I use DAX to look through ALL the DOCNUMBR column, and ONLY IF it contains the Letters "SLS" return the full SLS document number only in the column?

 

This is what I am trying to do:

 

 

 

DOCNUMBRDOCDATE Returned
3213411/17/2009 0:00 
SLS0081233/31/2009 0:00SLS008123
SLS01693012/18/2012 0:00SLS016930
366149/7/2010 0:00 
3667610/7/2010 0:00 
SLS0115429/7/2010 0:00SLS011542
690615/4/2016 0:00 
SLS 0241664/14/2016 0:00SLS 024166
1 ACCEPTED SOLUTION
KHorseman
Community Champion
Community Champion

Returned = IF(
	NOT(
		ISERROR(
			FIND(
				"SLS",
				TableName[DOCNUMBR]
			)
		)
	),
	TableName[DOCNUMBR],
	BLANK()
)

 

Man, I can't believe I got to use the NOT(ISERROR(FIND())) trick twice in one day!





Did I answer your question? Mark my post as a solution!

Proud to be a Super User!




View solution in original post

1 REPLY 1
KHorseman
Community Champion
Community Champion

Returned = IF(
	NOT(
		ISERROR(
			FIND(
				"SLS",
				TableName[DOCNUMBR]
			)
		)
	),
	TableName[DOCNUMBR],
	BLANK()
)

 

Man, I can't believe I got to use the NOT(ISERROR(FIND())) trick twice in one day!





Did I answer your question? Mark my post as a solution!

Proud to be a Super User!




Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.