Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Learn from the best! Meet the four finalists headed to the FINALS of the Power BI Dataviz World Championships! Register now
I've Imported Data from Databricks to Power BI. The data seems to look like Below.
| batchid | sampleid | REPLICATEID | CreateDate | Thickness | Dry | Wet | Mixed |
| B-20231006-0039 | S-20231009-0179 | 1 | 2023-10-09 | 20.85 | NULL | NULL | NULL |
| B-20231006-0039 | S-20231009-0179 | 1 | 2023-10-09 | NULL | 44.3 | NULL | NULL |
| B-20231006-0039 | S-20231009-0179 | 1 | 2023-10-09 | NULL | NULL | NULL | 41.85 |
| B-20231006-0039 | S-20231009-0179 | 1 | 2023-10-09 | NULL | NULL | 33.85 | NULL |
| B-20231006-0039 | S-20231009-0179 | 1 | 2023-10-09 | 21.57 | NULL | NULL | NULL |
| B-20231006-0039 | S-20231009-0179 | 2 | 2023-10-09 | NULL | 45.09 | NULL | NULL |
| B-20231006-0039 | S-20231009-0179 | 2 | 2023-10-09 | 22.09 | NULL | NULL | NULL |
| B-20231006-0039 | S-20231009-0179 | 2 | 2023-10-09 | NULL | NULL | 34.23 | NULL |
| B-20231006-0039 | S-20231009-0179 | 2 | 2023-10-09 | NULL | NULL | NULL | 42.44 |
If you look at the Batchid, Sample_id, createdate are same Data. it deferred with replicateID 1 and 2 . Here each value in Thickness, dry, wet, mixed is taking one for each valuea and getting remaining as NULL. I want to decrease rows.
I want to show data in below format as below to reduce rows and for better report looking.
| batchid | sampleid | REPLICATEID | CreateDate | Thickness | Dry | Wet | Mixed |
| B-20231006-0039 | S-20231009-0179 | 1 | 2023-10-09 | 20.85 | 44.3 | 33.85 | 41.85 |
| B-20231006-0039 | S-20231009-0179 | 1 | 2023-10-09 | 21.57 | NULL | NULL | NULL |
| B-20231006-0039 | S-20231009-0179 | 2 | 2023-10-09 | 22.09 | 45.09 | 34.23 | 42.44 |
Any help on this is appreciated
Solved! Go to Solution.
what should be the result? such
In Null value must be 45.09 you pointed.
explain why it should be this way and on what basis
If you see last three four rows data
| B-20231006-0039 | S-20231009-0179 | 2 | 2023-10-09 | NULL | 45.09 | NULL | NULL |
| B-20231006-0039 | S-20231009-0179 | 2 | 2023-10-09 | 22.09 | NULL | NULL | NULL |
| B-20231006-0039 | S-20231009-0179 | 2 | 2023-10-09 | NULL | NULL | 34.23 | NULL |
| B-20231006-0039 | S-20231009-0179 | 2 | 2023-10-09 | NULL | NULL | NULL | 42.44 |
I need out like this because
| B-20231006-0039 | S-20231009-0179 | 2 | 2023-10-09 | 22.09 | 45.09 | 34.23 | 42.44 |
I will reduce the number of rows
batch ID -
| B-20231006-0039 |
SampleID - S-20231009-0179
ReplicateID - 2
Createdate- 2023-10-09
Hello @RajeshZZ424 ,
you can use group by in power query.
check it out https://learn.microsoft.com/en-us/power-query/group-by
Proud to be a Super User! | |
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
Check out the February 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 53 | |
| 51 | |
| 36 | |
| 15 | |
| 14 |
| User | Count |
|---|---|
| 92 | |
| 75 | |
| 41 | |
| 26 | |
| 25 |