The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredCompete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.
I've list of sales by vegetables wise as i need sum of value by range
Measure sales = sum(table[amount of sales])
if i apply filter between by sales (not rows - need SUM Level)
like it will show MIN Value = 25 MAX = 300 (As total)
link this will give as row level not sum of sales:
https://learn.microsoft.com/en-us/power-bi/create-reports/desktop-slicer-numeric-range
List | Amount by sales |
papaya | 30 |
orange | 40 |
apple | 50 |
mango | 20 |
papaya | 30 |
apple | 40 |
orange | 25 |
apple | 35 |
mango | 30 |
Solved! Go to Solution.
Hello @RajK2 ,
Limitation of "https://learn.microsoft.com/en-us/power-bi/create-reports/desktop-slicer-numeric-range"
The following considerations and limitations apply to the numeric range slicer:
The date range slicer allows for any date values even if they don't exist in the underlying date column.
If you'd like to see as sum someway. There is a solution that create a new table and you can write SUMMARIZE function such as:
SUMMARIZE(
table,
table[list],
"Amount_sales", SUM(table[sales])
)
However, after creating the new table, it's important to establish the correct relationships. Once that's done, using the amount_sales field from the table will yield the expected results.
Kind Regards,
Gökberk Uzuntaş
📌 If this post helps, then please consider Accepting it as a solution and giving Kudos — it helps other members find answers faster!
🔗 Stay Connected:
📘 Medium |
📺 YouTube |
💼 LinkedIn |
📷 Instagram |
🐦 X |
👽 Reddit |
🌐 Website |
🎵 TikTok |
Hi @RajK2,
May I ask if you have resolved this issue? If so, please mark the helpful reply and accept it as the solution. This will be helpful for other community members who have similar problems to solve it faster.
Thank you.
Hi @RajK2,
I wanted to check if you had the opportunity to review the information provided. Please feel free to contact us if you have any further questions. If my response has addressed your query, please accept it as a solution and give a 'Kudos' so other members can easily find it.
Thank you.
Hi @RajK2,
Thank you for posting your query in the Microsoft Fabric Community Forum, and thanks to @uzuntasgokberk for sharing valuable insights.
Could you please confirm if your query has been resolved by the provided solution? If so, please mark it as the solution. This will help other community members solve similar problems faster.
Thank you.
Hello @RajK2 ,
Limitation of "https://learn.microsoft.com/en-us/power-bi/create-reports/desktop-slicer-numeric-range"
The following considerations and limitations apply to the numeric range slicer:
The date range slicer allows for any date values even if they don't exist in the underlying date column.
If you'd like to see as sum someway. There is a solution that create a new table and you can write SUMMARIZE function such as:
SUMMARIZE(
table,
table[list],
"Amount_sales", SUM(table[sales])
)
However, after creating the new table, it's important to establish the correct relationships. Once that's done, using the amount_sales field from the table will yield the expected results.
Kind Regards,
Gökberk Uzuntaş
📌 If this post helps, then please consider Accepting it as a solution and giving Kudos — it helps other members find answers faster!
🔗 Stay Connected:
📘 Medium |
📺 YouTube |
💼 LinkedIn |
📷 Instagram |
🐦 X |
👽 Reddit |
🌐 Website |
🎵 TikTok |