Hi,
If a part no. have Lenth, width height (not blank or zero any of the 3 columns) then YES else NO. I need your help.
Part no | Lenth | width | Height | Result |
1233 | 3 | 0 | 5 | NO |
1234 | 8 | 6 | NO | |
1235 | 2 | 3 | 4 | YES |
1236 | 2 | NO | ||
1237 | 1 | 2 | 3 | YES |
Solved! Go to Solution.
Hello @sbhan4
Your question is unclear, do you have two tables or do you want the calculation in a single table.
My answer was for a table and I misplaced OR instead of y.
Medida: IF(SELECTEDVALUE(table[Length])>0 && SELECTEDVALUE(table[width])>0 && SELECTEDVALUE(table[Height])>0, "YES","NO")
O
Measurement: IF(ISBLANK(SELECTEDVALUE(table[Length]) ISBLANK(SELECTEDVALUE(table[width]) ISBLANK(SELECTEDVALUE(table[Height]) SELECTEDVALUE(table[Length]) ? 0 ? SELECTEDVALUE(table[width]) to 0 ? SELECTEDVALUE(table[Height]) to 0, "NO","YES")
You're looking for an IF statement and not a vlookup..?
If so, create a new column
@darentengmfs Vlookup or ef else anything is fine. The REsult should come to like that
Hi @sbhan4
Please make sure your three number columns are of number type.
Measure = IF(SELECTEDVALUE(table[Length]>0 || SELECTEDVALUE(table[width]>0 || SELECTEDVALUE(table[Height]>0, "YES","NO")
OR
Measure = IF(ISBLANK(SELECTEDVALUE(table[Length]) || ISBLANK(SELECTEDVALUE(table[width]) || ISBLANK(SELECTEDVALUE(table[Height]) || SELECTEDVALUE(table[Length] = 0 || SELECTEDVALUE(table[width] = 0 || SELECTEDVALUE(table[Height] = 0, "NO","YES")
Hello @sbhan4
Your question is unclear, do you have two tables or do you want the calculation in a single table.
My answer was for a table and I misplaced OR instead of y.
Medida: IF(SELECTEDVALUE(table[Length])>0 && SELECTEDVALUE(table[width])>0 && SELECTEDVALUE(table[Height])>0, "YES","NO")
O
Measurement: IF(ISBLANK(SELECTEDVALUE(table[Length]) ISBLANK(SELECTEDVALUE(table[width]) ISBLANK(SELECTEDVALUE(table[Height]) SELECTEDVALUE(table[Length]) ? 0 ? SELECTEDVALUE(table[width]) to 0 ? SELECTEDVALUE(table[Height]) to 0, "NO","YES")
Formula given by @pranit828 works perfectly,
@pranit828 you have missed closing Parthese after each Selected value that is creating problem to him
Just Rewrite the Fucntion and Share
Proud to be a Super User!
@VijayP Thank you, Vijay! I have provided brackets as well but didn't work for me. Can you please try this out in pbix file.
PFA
https://drive.google.com/file/d/1aJ9AjE90eDNT8ufKLHo79YBZ90EuteXj/view?usp=sharing
@pranit828 Did Small Change SELECTEDVALUE not requried
@sbhan4 if you find this as solution please mention this as solution and share your Kudoes
Proud to be a Super User!
Thank you @VijayP
I have updated the formula.
User | Count |
---|---|
421 | |
259 | |
107 | |
104 | |
87 |