Forum Discussion
SarathB2
4 years agoFrequent Visitor
Need help with Dax
Hello Experts, Good Day! I am stuck with finding and extract the values from a column which "StartsWith" any of the value from another column which are true. Example - I have two tables with o...
- 4 years ago
SarathB2 , Try like
Flag =
VAR SO = Table2[Object]
VAR _Tab = maxx(FILTER(Table1, CONTAINSSTRING(LEFT(SO,LEN(Table1[Type])),Table1[Type])), Table[Type])
RETURN
_tab