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.
Hi all,
How can I add a column that states IF 'custom' is in the future then add a 15 cumulative total for each row?
30 May 2021 15
06 June 2021 30
etc
@HenryJS
You can add the following DAX calculated column:
Cumm =
IF(
Table[Custom] > TODAY() ,
RANKX( FILTER(Table,Table[Custom] > TODAY() ) , Table[Custom], , ASC) * 15
)
⭕ Subscribe and learn Power BI from these videos
⚪ Website ⚪ LinkedIn ⚪ PBI User Group
@HenryJS , not very clear. Can you share sample data and sample output in table format? Or a sample pbix after removing sensitive data.
Try a new column like
sumx(filter(Table, [custom] <=earlier([custom])),[QTY])
@amitchandak I want to add a new DAX column that states if Week Ending is in the future then add a cumulative 15 for each week
so if week ending is in future each week ending adds 15 cumulatively, 15, 30, 45, 60 etc for each week in future
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 |
---|---|
195 | |
80 | |
70 | |
51 | |
42 |