Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
Hi,
I'm trying to add the alias "ItemID".... for 'Items'[ItemID].... to the below query: I know this should be straightforward but I've been looking at this for some time and unable to figure it out. Thanks in advance!
EVALUATE
FILTER(
SUMMARIZE(
'Items',
'Items'[ItemID],
"Cost", SUM('Items'[Cost])
),
[Cost] > 10
)
Solved! Go to Solution.
Hi @monaco88
please try
EVALUATE
SELECTCOLUMNS (
FILTER (
SUMMARIZE ( 'Items', 'Items'[ItemID], "Cost", SUM ( 'Items'[Cost] ) ),
[Cost] > 10
),
"NewName", [ItemID],
"Cost", [Cost]
)
Hi @monaco88
please try
EVALUATE
SELECTCOLUMNS (
FILTER (
SUMMARIZE ( 'Items', 'Items'[ItemID], "Cost", SUM ( 'Items'[Cost] ) ),
[Cost] > 10
),
"NewName", [ItemID],
"Cost", [Cost]
)
That works. Thanks!
EVALUATE
SELECTCOLUMNS (
'Items',
"item ID", 'item'[item Id],
)
This will help you name an alias
Check out the November 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
| User | Count |
|---|---|
| 5 | |
| 5 | |
| 4 | |
| 4 | |
| 3 |
| User | Count |
|---|---|
| 24 | |
| 21 | |
| 12 | |
| 10 | |
| 8 |