Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
Hello
I need help importing a table that has emdebed rows with summary information, see the example bellow:
As you can see the first appearence of the observation in column group is the summary of the subsequent observations within the same gruop. However not all the the observations have subgroups in (see the last row), in that case I would like to have that row included, which means I can not solely filter by subgroup.
Any idea on how to import this to power Bi?
Thanks
Solved! Go to Solution.
@kjerez , Create a new column like
new column =
var _Sub = countx(filter(Table,[group] =earlier([group]) && not(isblank([sub group]))),[sub group])+0
if(_sub >0, "Has sub group", "No Sub group")
Thanks,
I ended up using:
Column = var _Sub = COUNTX(FILTER('All Types',[Group Name]=EARLIER([Group Name]) && NOT(ISBLANK([SubGroup]))),[SubGroup])+0 return if(_sub >0, "Has sub group", "No Sub group")
I also create another dummy variable with subgroup, and created a filter combining these two.
@kjerez , Create a new column like
new column =
var _Sub = countx(filter(Table,[group] =earlier([group]) && not(isblank([sub group]))),[sub group])+0
if(_sub >0, "Has sub group", "No Sub group")
Thanks,
I ended up using:
Column = var _Sub = COUNTX(FILTER('All Types',[Group Name]=EARLIER([Group Name]) && NOT(ISBLANK([SubGroup]))),[SubGroup])+0 return if(_sub >0, "Has sub group", "No Sub group")
I also create another dummy variable with subgroup, and created a filter combining these two.
Check out the July 2025 Power BI update to learn about new features.
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
User | Count |
---|---|
65 | |
63 | |
52 | |
39 | |
25 |
User | Count |
---|---|
84 | |
57 | |
45 | |
44 | |
37 |