The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredCompete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.
Hello,
I am looking for DAX to Countrows of a date column to show a result of number of dates between today and the next 6 months.
Any assistance is greatly appreciated. 🙂
Solved! Go to Solution.
Try the following formula:
Measure = COUNTROWS(CALCULATETABLE('Table', DATESINPERIOD('Table'[Dates], TODAY(), 6, MONTH)))
Try the following formula:
Measure = COUNTROWS(CALCULATETABLE('Table', DATESINPERIOD('Table'[Dates], TODAY(), 6, MONTH)))
Thankyou, much appreciated 🙂