Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Don'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.

Reply
christopherocc
Frequent Visitor

Help with DAX

Hello.

 

I have this table:

FacilityIDMonthInsurerIDAmount Owing1-30 Days120+ Days31-60 Days61-90 Days91-120 Days
SS000013/1/2024 0:0010006$999999999999999999
SS000014/1/2024 0:0010006$999999999999999999
SS000015/1/2024 0:0010006$999999999999999999
SS000016/1/2024 0:0010006$999999999999999999
SS000011/1/2024 0:0010005$999999999999999999
SS000012/1/2024 0:0010006$999999999999999999
SS000015/1/2024 0:0010005$999999999999999999
SS000017/1/2024 0:0010005$999999999999999999
SS0000111/1/2024 0:0010005$999999999999999999
SS000016/1/2024 0:0010005$999999999999999999
SS000017/1/2024 0:0010006$999999999999999999
SS000018/1/2024 0:0010006$999999999999999999
SS0000111/1/2024 0:0010006$999999999999999999
SS000012/1/2024 0:0010005$999999999999999999
SS000018/1/2024 0:0010005$999999999999999999

 

I would like create a clustered column visual with the data except I want the data to be filtered by the most recent month that is selected in a date slicer. I also want to include several rows. 

 

I was able to acheive something similar albeit only with one column. :

 

 

Most Recent Month Payment Amount = 
VAR LatestMonth = MONTH([LatestDate])
VAR LatestYear = YEAR([LatestDate])
VAR PaymentAmount =
    CALCULATE(
        SUM('Master Payments'[Amount]),
        MONTH(DimDate[Date]) = LatestMonth && YEAR(DimDate[Date]) = LatestYear
    )
RETURN 
    IF(
        ISBLANK(PaymentAmount),
        "None",
        PaymentAmount
    )

 

 

 
The difference would be that I want to include several columns rather than just one I used in my previous example.
 
Is this feasable? 
1 ACCEPTED SOLUTION
Ashish_Mathur
Super User
Super User

Hi,

PBI file attached.

Hope this helps.

Ashish_Mathur_0-1734253688618.png

 


Regards,
Ashish Mathur
http://www.ashishmathur.com
https://www.linkedin.com/in/excelenthusiasts/

View solution in original post

4 REPLIES 4
Ashish_Mathur
Super User
Super User

Hi,

PBI file attached.

Hope this helps.

Ashish_Mathur_0-1734253688618.png

 


Regards,
Ashish Mathur
http://www.ashishmathur.com
https://www.linkedin.com/in/excelenthusiasts/
danextian
Super User
Super User

Hi @christopherocc 

 

This is very similar to aging of receivables report I created.

https://community.fabric.microsoft.com/t5/Data-Stories-Gallery/Accounts-Receivable-Aging-Schedule/td... 

danextian_0-1734250831695.png

There is a link to the tutorial on YouTube which has the sampe pbix in the description.










Did I answer your question? Mark my post as a solution!


Proud to be a Super User!









"Tell me and I’ll forget; show me and I may remember; involve me and I’ll understand."
Need Power BI consultation, get in touch with me on LinkedIn or hire me on UpWork.
Learn with me on YouTube @DAXJutsu or follow my page on Facebook @DAXJutsuPBI.
Bibiano_Geraldo
Super User
Super User

Hi @christopherocc ,

Can you please give more context, i mean you can show the desired output and which several rows you want to display?


I hope this helps! 
If you found this answer helpful:
✔️ Mark it as the solution to help others find it faster.
 Give it a like to show your appreciation!

Thank you for contributing to our amazing Power BI community! 
FarhanJeelani
Super User
Super User

Hi @christopherocc ,

 

Please try the below steps:

1. Set Up the Date Slicer

Ensure you have a proper Date Table in your model, related to your data table (Master Payments). Use this Date Table for your slicer. For the slicer, set the field to DimDate[Date] (or equivalent) and enable the "Single select" option.

2. Create a Measure for the Most Recent Month

You need a measure that dynamically identifies the latest month based on the slicer selection:

Most Recent Month Filter = 
VAR SelectedDate = MAX(DimDate[Date]) -- Gets the latest date selected in slicer
VAR LatestMonth = MONTH(SelectedDate)
VAR LatestYear = YEAR(SelectedDate)
RETURN
    IF(
        ISBLANK(SelectedDate),
        BLANK(),
        CALCULATE(
            SUM('Master Payments'[Amount]),
            MONTH('Master Payments'[Month]) = LatestMonth &&
            YEAR('Master Payments'[Month]) = LatestYear
        )
    )

3. Create Measures for Each Column

Repeat similar logic for each column you want in the visual. For example:

Amount Owing:

Most Recent Amount Owing = 
VAR SelectedDate = MAX(DimDate[Date])
VAR LatestMonth = MONTH(SelectedDate)
VAR LatestYear = YEAR(SelectedDate)
RETURN
    CALCULATE(
        SUM('Master Payments'[Amount Owing]),
        MONTH('Master Payments'[Month]) = LatestMonth &&
        YEAR('Master Payments'[Month]) = LatestYear
    )

1-30 Days:

Most Recent 1-30 Days = 
VAR SelectedDate = MAX(DimDate[Date])
VAR LatestMonth = MONTH(SelectedDate)
VAR LatestYear = YEAR(SelectedDate)
RETURN
    CALCULATE(
        SUM('Master Payments'[1-30 Days]),
        MONTH('Master Payments'[Month]) = LatestMonth &&
        YEAR('Master Payments'[Month]) = LatestYear
    )

Repeat this logic for all the other columns: 120+ Days, 31-60 Days, 61-90 Days, 91-120 Days.

4. Add Measures to the Visual

  1. Create a clustered column chart.
  2. Use FacilityID or InsurerID (or any category column) for the Axis.
  3. Add your measures (Most Recent Amount Owing, Most Recent 1-30 Days, etc.) to the Values field.

5. Optional: Adjust for Dynamic Titles

To make it clear which month the visual represents, create a dynamic title measure:

Dynamic Title = 
VAR SelectedDate = MAX(DimDate[Date])
RETURN
    "Data for " & FORMAT(SelectedDate, "MMMM YYYY")

Set this measure as the title of your visual (in the Format pane > Title > "fx" button).

6. Verify the Relationships

Ensure DimDate and Master Payments are properly related in your model, with DimDate as the one-side and Master Payments[Month] as the many-side.

 

With these measures, you can include several columns in your clustered column visual, all dynamically filtered by the most recent month selected in the slicer.

 

Please mark this as solution if it helps. Appreciate kudos.

Helpful resources

Announcements
Las Vegas 2025

Join us at the Microsoft Fabric Community Conference

March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!

Jan25PBI_Carousel

Power BI Monthly Update - January 2025

Check out the January 2025 Power BI update to learn about new features in Reporting, Modeling, and Data Connectivity.

December 2024

A Year in Review - December 2024

Find out what content was popular in the Fabric community during 2024.