Forum Discussion
shuhn1229
3 years agoResolver I
Combining First Non Blank with Filter
Hi all, I have two tables, lets call them A and B. Table A is a key column and is used to map naming conventions to B when a user uses an inappropriate name. However, this mapping can be differen...
- 3 years ago
pls try this
Column = COALESCE( CONVERT( CALCULATE(MAX('TableA'[Key]), FILTER(ALL(TableA),TableA[Name]='TableB'[Name]&&TableA[ID]='TableB'[D])),STRING), [Name])
Ahmedx
3 years agoSuper User
pls try this
Column =
COALESCE(
CONVERT(
CALCULATE(MAX('TableA'[Key]), FILTER(ALL(TableA),TableA[Name]='TableB'[Name]&&TableA[ID]='TableB'[D])),STRING),
[Name])