Hi All,
I'm currently trying to count rows between a certain date and only once per person from a SharePoint list.
I have it working for counting between the dates :
CountRows((Filter(WorkFromHome,Value(Text('DateUsed',"[$-en-US]yyyymmdd"))>=Value(Text(DateAdd(Today(),-30),"[$-en-US]yyyy-mm-dd")))))
I also have one working with only rows with a unique name:
CountRows(Distinct(WorkFromHome.Name,Name))
I know I need to combine the two somehow but I'm Stuck after a few hours.
Any help at all would be much appreciated !
Thanks!