Forum Discussion
Find a text with and without space
- Anonymous2 years ago
Here is my testing:
My sample:
I created a calculated column as follows.
Column 2 = VAR _space = IF(CONTAINSSTRING('Table'[column], " "), 1, 0) RETURN IF(_space <> 0, "within space", "without space")And then put this column into the slicer.
Is this the result you expect?
Best Regards,
Community Support Team _YuliaxIf this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Here is my testing:
My sample:
I created a calculated column as follows.
Column 2 =
VAR _space = IF(CONTAINSSTRING('Table'[column], " "), 1, 0)
RETURN
IF(_space <> 0, "within space", "without space")
And then put this column into the slicer.
Is this the result you expect?
Best Regards,
Community Support Team _Yuliax
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
- prajaktakeni112 years ago
Helper I
Anonymous Thank you for your reply , but I am not looing for this soultion I want both (with and without space should be considered as one value)