Group By correctly group in app view but not browser view

Hi,

I am grouping my table view based on a virtual column. It works perfectly in the editor and app view but not in the web browser view. 

App view:

Hyman_van_Zyl_0-1668694185659.png

 

Browser view:

Hyman_van_Zyl_1-1668694240867.png

Any explanation?

Thank you

 

0 6 181
6 REPLIES 6

Are you using the preview desktop view? If yes, maybe that's the reason why. 

Hi @diogolupcosta , thank you for the reply. I have also opened it in browser view with the share link and it still does the same. And I dont understand why it would make sense if it doesn't work the preview desktop view?

So, still not solved.

Ok it appears you have grouped by TO DO and DONE but the webview does not appear to do this?

With the information at hand not possible to assist apart from changing the order of the grouping?

Maybe a screenshot of the grouping? Also what view (Table etc) are you using?

Hi @gregdiana1 ,

It is table view. What other screen shot can help other than the ones provided?

Here is the formula to determine the grouping if that could maybe cause the problem:

IFS(AND(COUNT([Direct Posts])<1,COUNT([Buffers])<1),"To Do",AND(OR(COUNT([Direct Posts])>0,COUNT([Buffers])>0),[Repeat]="Yes"),"Post Again",AND(OR(COUNT([Direct Posts])>0,COUNT([Buffers])>0),[Repeat]="No"),"Done")

At face value, the logic appears correct but it appears the evaluation in the app and browser produces different results

IFS(
AND(COUNT([Direct Posts],TRUE,TRUE)<1,COUNT([Buffers],TRUE,TRUE)<1),"To Do",
AND(OR(COUNT([Direct Posts],TRUE,TRUE)>=1,COUNT([Buffers],TRUE,TRUE)>0),[Repeat]="Yes"),"Post Again",
AND(OR(COUNT([Direct Posts],TRUE,TRUE)>=1,COUNT([Buffers],TRUE,TRUE)>0),[Repeat]="No"),"Done")

The addition of the TRUE, TRUE only allows distinct values.

Leaving blank is the same as TRUE, FALSE and which allows duplicate values

So if there are possible duplicates then <1 might evaluate as false as there might be repeated and duplicate 0 for example. I am thinking out of the box here as I do not have the data to play around with and experience suggests when something obvious like this happens it is some trivial non-obvious issue at play.

I have found that say <10 and >9 leaves 9 itself undefined so  <10 and >=10 is more explicit. It does not make sense but for some unknown reason, it does?

Maybe I have muddied the waters but without any data I am shooting from the hip!

Thank you for looking into this but I think there is something wrong, this doesn't work

Top Labels in this Space