Microsoft Fabric Community Conference 2025, March 31 - April 2, Las Vegas, Nevada. Use code FABINSIDER for a $400 discount.
Register nowGet inspired! Check out the entries from the Power BI DataViz World Championships preliminary rounds and give kudos to your favorites. View the vizzies.
=Table.ReplaceValue(#"Change Type", EACH _[Resolved [Incidents]],"null",ReplaceValue,{Closed})
The error message is "Token Comma expected"
basically I have a column with dates Resolved [Incidents]
it has some null values.
If there is a null value in Resloved [Incidents] I want to replace it with the date in field [Closed]
What am I missing?
Solved! Go to Solution.
Hi @rde ,
Try this:
= Table.ReplaceValue(#"Change Type", each [Incidents], each if [Incidents] = null then [Closed] else [Incidents],Replacer.ReplaceValue,{"Incidents"})
Best Regards,
Eduardo
Thank for your help, it is working great
Hi @rde ,
Try this:
= Table.ReplaceValue(#"Change Type", each [Incidents], each if [Incidents] = null then [Closed] else [Incidents],Replacer.ReplaceValue,{"Incidents"})
Best Regards,
Eduardo
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Check out the February 2025 Power BI update to learn about new features.