Forum Discussion
Anonymous
5 years agoNot applicable
Convert the below dax to m query
https://drive.google.com/file/d/1nv4wk6uv8ZfN45kJzlyaBCKu5kYbKmtl/view?usp=sharing
how to convert the below dax to m query.
Flag PH =
IF (
NOT (
ISBLANK ( 'Table A'[Amount on Hold] )
),
IF (
ROUND( ('Table A'[AP ] + 'Table A'[Amount on Hold]),1) = 0,
"Payments on Hold"
)
)
I am fairly new to m query, can some one help with this.
Anonymous
You try the following formula as a new custom column in PQ:=if [Amount on Hold] <> null and Number.Round([Amount on Hold]+[AP],1) = 0 then "Payments on Hold" else null
1 Reply
- FowmySuper User
Anonymous
You try the following formula as a new custom column in PQ:=if [Amount on Hold] <> null and Number.Round([Amount on Hold]+[AP],1) = 0 then "Payments on Hold" else null