Forum Discussion
ccianci
4 years agoFrequent Visitor
Fixing inconsistent names & missing titles
Hello all, I have two issues I'm hoping you can help me with. I'm fairly new to Power BI & Power Query and i'm working on a PBI report comparing joiners vs leavers over the last x years. For yo...
- Anonymous4 years ago
Hi ccianci ,
You may add a new column:
Filled Title = var _title= CALCULATE(MAX('Table'[Title]),ALLEXCEPT('Table','Table'[Email])) return IF([Title]=BLANK(),_title,[Title])Best Regards,
Eyelyn Qin
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Anonymous
4 years agoNot applicable
Hi ccianci ,
You may add a new column:
Filled Title =
var _title= CALCULATE(MAX('Table'[Title]),ALLEXCEPT('Table','Table'[Email]))
return IF([Title]=BLANK(),_title,[Title])
Best Regards,
Eyelyn Qin
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.