Forum Discussion
Anonymous
5 years agoNot applicable
If not, result error
The formula used is given in the screenshot. If length, width, height >0 then "YES" plus "No" Els
Anonymous
5 years agoNot applicable
calerof
5 years agoImpactful Individual
Hello @sbhan4 ,
Try this:
GPPCheck =
SWITCH(
TRUE(),
SUM(GPP[Height]) <= 0 ||
SUM(GPP[Lenght]) <= 0 ||
SUM(GPP[Width]) <= 0,
"No",
"Yes"
)
I hope it helps.
Best regards
Fernando
If it helped, please consider liking the post and mark it in response.
- Anonymous5 years agoNot applicable
calerof Hello sir,
I tried your solution. Everything showing "YES" only. As you see in the screenshot,
if any of the column value is 0 or blank = NO
Each column has a value >0 then only YES. can you share your pbix file.