Don't miss your chance to take the Fabric Data Engineer (DP-700) exam on us!
Learn moreWe've captured the moments from FabCon & SQLCon that everyone is talking about, and we are bringing them to the community, live and on-demand. Starts on April 14th. Register now
I need to get the Max (or latest) Version by FullBuildID, problem is the FullBuildID is not a numeric value so when I use Max it returns a 0. Here is a sample of my data:
| Product | Version | Full Build ID |
| A | 16 | 16.0.00.0023.03 |
| A | 16 | 16.0.00.0020.02 |
| A | 16 | 16.0.00.0020.03 |
| B | 16 | 16.1.00.0040.57 |
| B | 7 | 7.5.00.0000.00 |
Desired output:
| Product | Version | Full Build ID |
| A | 16 | 16.0.00.0023.03 |
| B | 16 | 16.1.00.0040.57 |
thanks in advance for your assistance!
Solved! Go to Solution.
You could create a new column like this:
FullBuildNum = SUBSTITUTE([Full Build ID],".","")
Switch the column to Whole Number.
You could create a new column like this:
FullBuildNum = SUBSTITUTE([Full Build ID],".","")
Switch the column to Whole Number.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
| User | Count |
|---|---|
| 56 | |
| 40 | |
| 36 | |
| 20 | |
| 18 |
| User | Count |
|---|---|
| 73 | |
| 73 | |
| 38 | |
| 35 | |
| 26 |