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
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.
| User | Count |
|---|---|
| 8 | |
| 7 | |
| 6 | |
| 5 | |
| 5 |
| User | Count |
|---|---|
| 24 | |
| 11 | |
| 9 | |
| 9 | |
| 8 |