Forum Discussion
If Text Contains Statement
- 4 years ago
Hi Dane ,
Does this one here work for you?
IF ( SEARCH ( "2L", OrderDetails[PartNumber], 1, BLANK() ), TrackingHistory[Width] *2, ( TrackingHistory[Width] *2 ) + ( TrackingHistory[Height] *2 ) )
I pressumed that your logical test shall search for "2L" in PartNumber, meaning "2L" could come up at different positions in a string (i.e. "ABC 2L", "2L DEF", "GHI 2L JKL" etc.).Let me know if this helps and if not, feel free to share some sample data and I can take a deeper look into it 🙂
/Tom
https://www.tackytech.blog/
https://www.instagram.com/tackytechtom/
Hi,
That takes me to a sign-in page. Please upload the file to Google Drive/One Drive and share the download link of that file.
Below is the download link in google drive, please let me know if you have trouble accessing this. Thanks!
https://drive.google.com/file/d/1cIU1YZwPzxCC7vM1w1gDMYrGVVngQIIv/view?usp=sharing
- Ashish_Mathur4 years agoSuper User
Since you have not shared the sourcee Excel file, I cannot see your table in the queru Editor and there cannot provide a M language solution. However, this calculated column formula works
Column = if(CONTAINSSTRING(OrderDetail[PartNo],"2L"),OrderDetail[Width]*2,(OrderDetail[Width]*2)+(OrderDetail[Height]*2))