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

Level up your Power BI skills this month - build one visual each week and tell better stories with data! Get started

Reply
kousar99
Helper I
Helper I

to dax conversion and suggest what kind of charts can use in dektop

Hi Experts,

I am facing an issue while converting the below SQL query into Dax .can you please help me to convert the query.

and suggest to me what kind of charts can be used for it on bi desktop.

 

select count(*) as Total,substr(nextrenewaldate,1,7) as year_month

from lei_user.gleif_leis_v21

where managingglou='EVK05KS7XY1DEII'

AND substr(initialregistrationdate,1,7)<'2019-07'

AND substr(nextrenewaldate,1,7) IN('2020-07','2020-08','2020-09')

Group by substr(nextrenewaldate,1,7);

 

 

Thanks in advance,

1 ACCEPTED SOLUTION
v-yalanwu-msft
Community Support
Community Support

Hi, @kousar99 ;

You could create a column as follow:

year_month =
IF (
    [managingglou] = "EVK05KS7XY1DEII"
        && MID ( [initialregistrationdate], 1, 7 ) < "2019-07"
        && MID ( [nextrenewaldate], 1, 7 ) IN { "2020-07", "2020-08", "2020-09" },
    MID ( [nextrenewaldate], 1, 7 )
)

Then create a measure 

total =
CALCULATE (
    COUNTROWS ( table ),
    FILTER (
        ALL ( table ),
        [year_month]= MAX ([year_month])
                    && [managingglou] = "EVK05KS7XY1DEII"
                    && MID ( [initialregistrationdate], 1, 7 ) < "2019-07"
                    && MID ( [nextrenewaldate], 1, 7 ) IN { "2020-07", "2020-08", "2020-09" }))

Or create a column.

total =
CALCULATE (
    COUNTROWS ( table ),
    FILTER (
        ALL ( table ),
        [year_month] = EARLIER ( [year_month] )
            && [managingglou] = "EVK05KS7XY1DEII"
            && MID ( [initialregistrationdate], 1, 7 ) < "2019-07"
            && MID ( [nextrenewaldate], 1, 7 ) IN { "2020-07", "2020-08", "2020-09" }
    )
)


Best Regards,
Community Support Team _ Yalan Wu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

8 REPLIES 8
mnskr2024
New Member

The bigger and better thing is that I found this useful; you may check it out here: https://arunanex.com/

v-yalanwu-msft
Community Support
Community Support

Hi, @kousar99 ;

You could create a column as follow:

year_month =
IF (
    [managingglou] = "EVK05KS7XY1DEII"
        && MID ( [initialregistrationdate], 1, 7 ) < "2019-07"
        && MID ( [nextrenewaldate], 1, 7 ) IN { "2020-07", "2020-08", "2020-09" },
    MID ( [nextrenewaldate], 1, 7 )
)

Then create a measure 

total =
CALCULATE (
    COUNTROWS ( table ),
    FILTER (
        ALL ( table ),
        [year_month]= MAX ([year_month])
                    && [managingglou] = "EVK05KS7XY1DEII"
                    && MID ( [initialregistrationdate], 1, 7 ) < "2019-07"
                    && MID ( [nextrenewaldate], 1, 7 ) IN { "2020-07", "2020-08", "2020-09" }))

Or create a column.

total =
CALCULATE (
    COUNTROWS ( table ),
    FILTER (
        ALL ( table ),
        [year_month] = EARLIER ( [year_month] )
            && [managingglou] = "EVK05KS7XY1DEII"
            && MID ( [initialregistrationdate], 1, 7 ) < "2019-07"
            && MID ( [nextrenewaldate], 1, 7 ) IN { "2020-07", "2020-08", "2020-09" }
    )
)


Best Regards,
Community Support Team _ Yalan Wu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

BeaBF
Super User
Super User

@kousar99 Hi!

Can you paste some sample data? 

 

BF

Hi,

I just need an idea of what kinda function can be used for that query and later ill paste some sample data

@kousar99  You can use the SQL Query as-is to extract data from your DB or you can do some steps in the Power Query to transform extracted data and then load them into the model or you can load your data and then calculated a table from the native one with these characteristics. 

What do you want to do? The request is too general.

 

BF.

Hi,

Thanks for the response.

Please can u share a few samples for creating reports for LEIs renewal summary? 

@kousar99  i found this guide: https://sonra.io/xml/converting-lei-xml-data-to-power-bi/

 

hope this will help u! if you have any question, write me!

 

BF

Hi Thanks for the response,

If you have any other material or videos ,kindly share with me

Helpful resources

Announcements
April Power BI Update Carousel

Power BI Monthly Update - April 2026

Check out the April 2026 Power BI update to learn about new features.

Fabric SQL PBI Data Days

Data Days 2026 coming soon!

Sign up to receive a private message when registration opens and key events begin.

New to Fabric survey Carousel

New to Fabric Survey

If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.