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'm trying to get the number of days between two dates. For that, I tried to use the DATEDIFF function but the date fields are not showing up in IntelliSense and if I try to enter it manually it shows an error that is in the figure below:
Please let me know what is wrong with this expression. Thanks in advance.
Solved! Go to Solution.
Hi @Ajaikumar ,
As checked your screenshot, what you are trying to create is a measure. That is the cause of problem. This errror can happen when a measure formula refers to a column that contains many values without specifying an aggregation such as min, max, count, or sum to get a single result. You can review the following blog for more details.
DAX error messages in Power BI
And the solution is that you can create a calculated column as below to replace this measure...
R value = DATEDIFF ( calendar[Date], TODAY (), DAY )
In addition, you can refer the following blog to get the difference between two dates.
Best Regards
Hi @Ajaikumar ,
As checked your screenshot, what you are trying to create is a measure. That is the cause of problem. This errror can happen when a measure formula refers to a column that contains many values without specifying an aggregation such as min, max, count, or sum to get a single result. You can review the following blog for more details.
DAX error messages in Power BI
And the solution is that you can create a calculated column as below to replace this measure...
R value = DATEDIFF ( calendar[Date], TODAY (), DAY )
In addition, you can refer the following blog to get the difference between two dates.
Best Regards
Thank you for the solution @Anonymous
Hi @Ajaikumar
perhaps you're trying to create a new Calculated Column but in fact you created a Measure instead
Check out the July 2025 Power BI update to learn about new features.
User | Count |
---|---|
23 | |
7 | |
7 | |
6 | |
6 |
User | Count |
---|---|
27 | |
12 | |
10 | |
9 | |
6 |