Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
Hello,
Can you use "Group By" Function for a specific date?
Ex, I have table like this:
I used GroupBy to get 1 Line, Per Date, Per Person:
Now I want to have a GroupBy Table just like the above, but for only the date that matches a date in a 2nd Table.
Ex: Table2:
GroupBy with Table2[Date]:
@kressb , you need to filter all measure using
https://docs.microsoft.com/en-us/dax/treatas-function
or measures like
new Number = Calculate([Number], filter(Date, Date[date] in values(Table2[Date])))
new Avg no Number MTD= Calculate([Avg no Number MTD], filter(Date, Date[date] in values(Table2[Date])))
I use the "GroupBy" Function in PowerQuery.. there doesn't seem to be a way to use formulas?
there's just drop downs.