Check your eligibility for this 50% exam voucher offer and join us for free live learning sessions to get prepared for Exam DP-700.
Get StartedDon't miss out! 2025 Microsoft Fabric Community Conference, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount. Prices go up February 11th. Register now.
Solved! Go to Solution.
Hi kunuthuri,
Create a measure using DAX as below:
Less than 2 weeks = CALCULATE ( MAX ( Table1[Title] ), FILTER ( Table1, Table1[Date] <= TODAY () - 1 && Table1[Date] >= TODAY () - 15 ) )
Regards,
Jimmy Tao
Hi kunuthuri ,
As a general solution, you can create a measure using dax like this pattern:
Result = VAR Last_Two_Week = MAX ( Table[Date] ) - 14 RETURN CALCULATE ( aggregation, FILTER ( Table, Table[Date] > Last_Two_Week && Table[Date] <= MAX ( Table[Date] ) ) )
Regards,
Jimmy Tao
Hi
Thanks to reply,
How to display values from 'Title' Column whose completed date in last 2 weeks?
Hi kunuthuri,
Create a measure using DAX as below:
Less than 2 weeks = CALCULATE ( MAX ( Table1[Title] ), FILTER ( Table1, Table1[Date] <= TODAY () - 1 && Table1[Date] >= TODAY () - 15 ) )
Regards,
Jimmy Tao
Thanks Jimmy Tao
Its working fine
Hi
From todays date to next 14 days new task and active data display like below examples
column = IF(Table1[column]="New" && table1[column]<=today+14, table1[column])
above calculated column is correct to retrieve data next 14 days data?
Thanks
Kunuthuri
in some other post i think they solved this for you in the comments, why not check them?
Also, why not write all in just one post?
this is a spamming helping
This seems awfully similar to the previous five or six threads you've started, but you've not actually given any clear idea of what you're doing in any of them
Every day display data based on todays date, means if we see data today, today to last 2 weeks and tomorrow we see data tomorrow onwards 2 weeks need to display
Can you please assist?
Thanks
Kunuthuri
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Check out the January 2025 Power BI update to learn about new features in Reporting, Modeling, and Data Connectivity.
User | Count |
---|---|
124 | |
79 | |
50 | |
38 | |
38 |
User | Count |
---|---|
196 | |
80 | |
70 | |
51 | |
42 |