Data filtering in ListView by using microflow

0
I have 300 data which 270 data = 0 and 30 data was having value = 0.55 plus minus. I want to do the filtering in a list to filter out the 0 and show 30 value data only is my table instead of showing 300 all data. May i know how to do the filtering using microflow? My idea was using list operation “filter” to do it. but it having error.  
asked
4 answers
4

Hi <fill in your name here>,

The list operator only allows Equals checks (that’s why it’s labeled as such).

You need to build your filter from scratch with a loop.

regards, Fabian

answered
1

Hi Khong,

Here is the example how to create a filter.

 

answered
0

Hi Dragan,

May I know why I cannot add the loop object into the list?

It having error.

 

answered
0

Remove the /Weight from the Change List operation? → $LoopOldList

answered