Hi guys!!
I can't move forward
I'm trying to SUM and Count in a GroupBy, with SharepintLists.
In SQL the query shoud be like that:
select ROUND.ID, count(QUESTION.Id),sum(QUESTION.Time)
from ROUND r
inner join QUESTION s on ROUND.Id=QUESTION.IdRound
where QUESTION.result=true
group by ROUND ID
I tried to put the results into a Gallery,
Now i got at ITEMS-> GroupBy(Filter(QUESTION,result=true),"ID","Group1")
and into the gallery i put a label-> CountRows(ThisItem.Group1)
How can I add one label for COUNT and other label for SUM??