Forum Discussion
Anonymous
4 years agoNot applicable
Cannot apply operator * to types Text and Number
Hi all, I try to do below formulation but still getting error. Step I already try 1. if[#"SAP_MMT_LV_MKPF_EN.D/C_SHKZG"]="H" then Value.Multiply([Quantity_MENGE],-1) else [...
- 4 years ago
Replace [Quantity_MENGE] with
Number.From( [Quantity_MENGE])
Anonymous
4 years agoNot applicable
Having this error
Vijay_A_Verma
4 years agoMost Valuable Professional
PQ is super sensitive to case. You have written number.from
It has to be
Number.From
- Anonymous4 years agoNot applicable