Join us for an expert-led overview of the tools and concepts you'll need to pass exam PL-300. The first session starts on June 11th. See you there!
Get registeredPower BI is turning 10! Letโs celebrate together with dataviz contests, interactive sessions, and giveaways. Register now.
Hi experts, hope you all doing good.
I have two tables in Power BI called Date and Invoice that are related with (invoice[date] 1:* Date[Date])
Now I'm trying to Calculate DateDiff with below condition:
1- The user not use slicer, in this case:
DateDiff = date[invoice] - today()
2- The user select the month using the table:
For example if user select 11 in month slicer:
DateDiff = date[invoice] - 11/01/2023
thank you help me to Calculate DateDiff with up condition.
Solved! Go to Solution.
Hi, @JavidRobatian
try below
Measure =
var a = SELECTEDVALUE('date'[month])
var b = DATEDIFF(CALCULATE(min(invoice[date]),ALLEXCEPT(invoice,invoice[cu nu])),TODAY(),DAY)
var c = DATEDIFF(CALCULATE(min(invoice[date]),ALLEXCEPT(invoice,invoice[cu nu])),DATE(2023,a,1),DAY)
var d = IF(ISFILTERED('date'[month]),c,b)
return
d
Hi, @JavidRobatian
try below
Measure =
var a = SELECTEDVALUE('date'[month])
var b = DATEDIFF(CALCULATE(min(invoice[date]),ALLEXCEPT(invoice,invoice[cu nu])),TODAY(),DAY)
var c = DATEDIFF(CALCULATE(min(invoice[date]),ALLEXCEPT(invoice,invoice[cu nu])),DATE(2023,a,1),DAY)
var d = IF(ISFILTERED('date'[month]),c,b)
return
d
Thank you for your reply.
I tried this but its partly works.
I changed Min to Max
its work well when I not use slicer.
but I want when I choose 10 (in month slicer) Datediff equal to:
and when I choose 11 (in month slicer) Datediff equal to:
HI, @JavidRobatian
in your previous post DATEDIFF between DATE column and User SELECT Date
you mention smallest number for each customer thats why i use min if you want latest date then you can use max()
with same formula select month(11) below result in image
with same formula select month(10) below result in image
in above output is some diff in output
beacuse i am take your previous post data
Yes and thank you for your reply.
I don't know why it works for me like this.
I share my PBI file
https://drive.google.com/file/d/1MJ1vWk2BShxE87eH7BM7QYkBX03p8zY3/view?usp=drive_link
Hi, @JavidRobatian
@JavidRobatian
in above you create a column
my code work with measure so try to mae measure
download .pbix file click HERE
You are right
It was my fault
But again, I don't know why my results don't match yours
HI, @JavidRobatian
i think you use relationship bw tables so try to delete relationship
Yes.
Amazing its work.
Thank you so much sir.
@JavidRobatian
Try this measure: Make sure you add a Year slicer
Datediff =
IF(
ISFILTERED( 'Date'[Month] ) ,
INT( MAX( 'Date'[Date] ) - MAX( Invoice[Date] ) ),
INT(TODAY() - MAX( Invoice[Date] ) )
)
โญ Subscribe and learn Power BI from these videos
โช Website โช LinkedIn โช PBI User Group
Thank you for your reply
I tried this but I think it doesn't work properly.
@JavidRobatian
Share your PBI file using Google Drive and past the link here.
โญ Subscribe and learn Power BI from these videos
โช Website โช LinkedIn โช PBI User Group
Hi
Thank you for your reply
I share my PBI file
https://drive.google.com/file/d/1MJ1vWk2BShxE87eH7BM7QYkBX03p8zY3/view?usp=drive_link
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
Check out the June 2025 Power BI update to learn about new features.
User | Count |
---|---|
14 | |
10 | |
10 | |
9 | |
9 |
User | Count |
---|---|
20 | |
13 | |
13 | |
11 | |
8 |