Hello,
Wanne have a sum of one column. But looks in two columns always first type 1 and if not existing type 2.
My problem is that when both doesn't existing he count one more(with no value). See my pictures. The right total is 340 and no 342.
How can i fixed this or is there a better way to get this easy thing done?
Kind regard,
Sander
Solved! Go to Solution.
@Anonymous so in understand that you want to put some other value when both type1 and type2 columns have a blank value in item, you can use below expression to do that, just replace 'put value when both column is null' with the value you want when both the columns have empty value.
if(equals(items('Apply_to_each')?['type1'],null),if(equals(items('Apply_to_each')?['type2'],null),'put value when both column is null',items('Apply_to_each')?['type2']),items('Apply_to_each')?['type1'])
@Anonymous so in understand that you want to put some other value when both type1 and type2 columns have a blank value in item, you can use below expression to do that, just replace 'put value when both column is null' with the value you want when both the columns have empty value.
if(equals(items('Apply_to_each')?['type1'],null),if(equals(items('Apply_to_each')?['type2'],null),'put value when both column is null',items('Apply_to_each')?['type2']),items('Apply_to_each')?['type1'])
Thanks for your reply,
The value has to be just zero. He don t have to count the empty rows.
So i can also without that?
Its works! for the value i was fill in 0 and it works 🙂 Thanks
Learn to digitize and optimize business processes and connect all your applications to share data in real time.
Did you know that you could restore a deleted flow? Check out this helpful article.
User | Count |
---|---|
32 | |
31 | |
24 | |
24 | |
20 |
User | Count |
---|---|
60 | |
57 | |
43 | |
37 | |
28 |