I have a Powerapp and a Gallery presenting meter readings from a Sharepoint List
I am trying to group on a column called "auth" and then sum the difference between the min and max reading to get water usage for a period in time (between 2 datepickers)
Consider the attached screenshot:
In the 4th and 5th record we have the following values in the auth column:
621563
621563;621564
both auths are owned by the same Client so I want to add the usage for both records but only show the combined auths value which in this case is 621563;621564
so the logic is: If the auth value contains 2 or more auths AND 1 of those auths exists as a single auth on a seperate record then combine and only show the multiple auths value
so if we had:
123456
123457;123459l;123456
876543;872514;887665
887665
I want to display only this:
123457;123459l;123456
876543;872514;887665
hope I have explained myself well enough 🙂
thanks