Power BI is turning 10, and we’re marking the occasion with a special community challenge. Use your creativity to tell a story, uncover trends, or highlight something unexpected.
Get startedJoin 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.
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
Solved! Go to Solution.
If two tables in your case, try a measure as below.
KPI = CALCULATE ( COUNTROWS ( 'Your server versions' ), FILTER ( 'Your server versions', CONTAINS ( 'Latest versions', 'Latest versions'[Version], 'Your server versions'[Version] ) ) ) / COUNTROWS ( 'Your server versions' )
If two tables in your case, try a measure as below.
KPI = CALCULATE ( COUNTROWS ( 'Your server versions' ), FILTER ( 'Your server versions', CONTAINS ( 'Latest versions', 'Latest versions'[Version], 'Your server versions'[Version] ) ) ) / COUNTROWS ( 'Your server versions' )
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
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
Check out the June 2025 Power BI update to learn about new features.
User | Count |
---|---|
74 | |
73 | |
56 | |
38 | |
31 |
User | Count |
---|---|
83 | |
64 | |
63 | |
49 | |
45 |