March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early bird discount ends December 31.
Register NowBe one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now
Is it possible to do in a measure to build a dynamic label in a table?
From this table
Group | VOL |
A | 178 |
B | 225 |
C | 126 |
D | 157 |
E | 76 |
F | 238 |
TOTAL | 1000 |
I want to expand F by divide by 4
to
Group | VOL |
A | 178 |
B | 225 |
C | 126 |
D | 157 |
E | 76 |
F 1 | 59.5 |
F 2 | 59.5 |
F 3 | 59.5 |
F 4 | 59.5 |
TOTAL | 1000 |
Solved! Go to Solution.
Hi @tonyc ,
Here are the steps you can follow:
1. Create calculated table.
True =
var _table=
FILTER('Table',[Group]="F")
var _table1=
GENERATE (
_table,
SELECTCOLUMNS (
GENERATESERIES ( 1, 4),
"Index", [Value]
)
)
var _table2=
ADDCOLUMNS(
_table1,"Group1",[Group]&" "&[Index])
var _table3=
SUMMARIZE(
_table2,[Group1],"VOL",MAXX(_table2,[VOL]) / 4)
return
UNION(
FILTER('Table',[Group]<>"F"),_table3)
2. Result:
Best Regards,
Liu Yang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly
Hi @tonyc ,
Here are the steps you can follow:
1. Create calculated table.
True =
var _table=
FILTER('Table',[Group]="F")
var _table1=
GENERATE (
_table,
SELECTCOLUMNS (
GENERATESERIES ( 1, 4),
"Index", [Value]
)
)
var _table2=
ADDCOLUMNS(
_table1,"Group1",[Group]&" "&[Index])
var _table3=
SUMMARIZE(
_table2,[Group1],"VOL",MAXX(_table2,[VOL]) / 4)
return
UNION(
FILTER('Table',[Group]<>"F"),_table3)
2. Result:
Best Regards,
Liu Yang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly
the original source is not a table. It is a visualisation table. VOL is a measure.
VOL = CALCULATE(
thank you
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Your insights matter. That’s why we created a quick survey to learn about your experience finding answers to technical questions.
Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.
User | Count |
---|---|
25 | |
16 | |
15 | |
7 | |
7 |
User | Count |
---|---|
35 | |
31 | |
16 | |
15 | |
12 |