=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
Join us for a free, hands-on Microsoft workshop led by women trainers for women where you will learn how to build a Dashboard in a Day!
User | Count |
---|---|
104 | |
73 | |
69 | |
47 | |
47 |
User | Count |
---|---|
161 | |
85 | |
76 | |
68 | |
67 |