Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
I am looking for DAX that will count the number of Visits for the given time frame (today looking 7 days back). I have tried the below, but it is giving me an error regarding duplicate dates. Any ideas?
Requested Last 7 Days = CALCULATE ( COUNT ( 'Active Assignments'[assignment_seq] ), DATESINPERIOD ( 'Active Assignments'[date_requested], LASTDATE ( 'Active Assignments'[date_requested] ), -7, DAY ) )
Solved! Go to Solution.
@MrPowerBIPro, thanks. Below is the error:
Error Message: MdxScript(Model) (3, 9) Calculation error in measure 'Active Assignments'[Requested Last 7 Days]: A date column containing duplicate dates was specified in the call to function 'DATESINPERIOD'. This is not supported.
Again, I just wanted to count the number of Assignment IDs (assignment_seq) opened in the last 7 days (using the date_requested field).
EDIT: was overthinking it, found a solution:
Requested Last 7 Days = CALCULATE( DISTINCTCOUNT('Active Assignments'[assignment_seq]), FILTER(ALL('Active Assignments'), 'Active Assignments'[date_requested] >= TODAY()-7) )
Requested Last 7 Days = CALCULATE (
DISTINCTCOUNT ( survey_reports[responseId] ),
DATESINPERIOD ( date1[Date] ,LASTDATE(date1[Date] ), -7, DAY )
)
it's giving me a blank instead of value
There is some error in this method, I should get 0 instead I am getting 3......
week=CALCULATE(DISTINCTCOUNT(survey_reports[mobile]),DATESINPERIOD(survey_reports[date],LASTDATE(survey_reports[date]),-7,DAY))
@jsabo That's a Good news.
See this link to found more:
https://community.powerbi.com/t5/Desktop/DATESBETWEEN-Date-and-Time-Field/td-p/17462
Regards
Mostafa
Can you copy the error here?
@MrPowerBIPro, thanks. Below is the error:
Error Message: MdxScript(Model) (3, 9) Calculation error in measure 'Active Assignments'[Requested Last 7 Days]: A date column containing duplicate dates was specified in the call to function 'DATESINPERIOD'. This is not supported.
Again, I just wanted to count the number of Assignment IDs (assignment_seq) opened in the last 7 days (using the date_requested field).
EDIT: was overthinking it, found a solution:
Requested Last 7 Days = CALCULATE( DISTINCTCOUNT('Active Assignments'[assignment_seq]), FILTER(ALL('Active Assignments'), 'Active Assignments'[date_requested] >= TODAY()-7) )
User | Count |
---|---|
77 | |
74 | |
42 | |
32 | |
28 |
User | Count |
---|---|
99 | |
92 | |
50 | |
49 | |
46 |