Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. Get started
=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
Check out the September 2024 Power BI update to learn about new features.
Learn from experts, get hands-on experience, and win awesome prizes.
User | Count |
---|---|
104 | |
100 | |
99 | |
38 | |
37 |
User | Count |
---|---|
158 | |
125 | |
76 | |
74 | |
63 |