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

Join us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register now.

Reply
TheRockStarDBA
Frequent Visitor

How can I compare different versions in PowerBI

Hello All,

 

I am trying to use powerbi to generate a report wherein I show servers based on environments (DEV/UAT/PRO), versions (SQLServer 11.0, 12.0, 13,0), edition (Dev / Enterprise / Standard). Its all working fine.

 

What I want to achieve is to have a KPI that tells me how many servers are in compliance of the builds that we have certified ?

 

Basically, I want to compare versions of sql server 

 

e.g. The latest build for sql server 2014 is SP2+CU1 = 12.0.5511.0. My current build is 12.0.2370.0 (RTM+CU2).

 

How can I have PowerBI report that my version is not in compliance ? 

 

Thanks,

Kin

1 ACCEPTED SOLUTION
Eric_Zhang
Microsoft Employee
Microsoft Employee

@TheRockStarDBA

 

If two tables in your case, try a measure as below.

Capture.PNG

 

KPI = 
CALCULATE (
    COUNTROWS ( 'Your server versions' ),
    FILTER (
        'Your server versions',
        CONTAINS (
            'Latest versions',
            'Latest versions'[Version], 'Your server versions'[Version]
        )
    )
)
    / COUNTROWS ( 'Your server versions' )

View solution in original post

2 REPLIES 2
Eric_Zhang
Microsoft Employee
Microsoft Employee

@TheRockStarDBA

 

If two tables in your case, try a measure as below.

Capture.PNG

 

KPI = 
CALCULATE (
    COUNTROWS ( 'Your server versions' ),
    FILTER (
        'Your server versions',
        CONTAINS (
            'Latest versions',
            'Latest versions'[Version], 'Your server versions'[Version]
        )
    )
)
    / COUNTROWS ( 'Your server versions' )
BobF
Helper I
Helper I

One suggestion l have to is to grab the data from this page https://buildnumbers.wordpress.com/sqlserver/.  Combine all the data into one table, l would suggest a column with the version number so you filter by version.  Then add column to indicate if that version is valid.  This table could be maintained in a spreasheet for ease of use.  If you update the spreadsheet then all you need to do is update from the data source. 

 

The other data source is the one which lists all the servers and the different versions.  Use a caclucated column to do a look up of the version number to the data source created above and return the column which contains the value if the verision number if complaint or not.  Or at least thats the approach l would try.

 

Robert

Helpful resources

Announcements
Join our Fabric User Panel

Join our Fabric User Panel

This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.

June 2025 Power BI Update Carousel

Power BI Monthly Update - June 2025

Check out the June 2025 Power BI update to learn about new features.

June 2025 community update carousel

Fabric Community Update - June 2025

Find out what's new and trending in the Fabric community.