Fabric is Generally Available. Browse Fabric Presentations. Work towards your Fabric certification with the Cloud Skills Challenge.
I have OLAP source file and in that file, I want to have the sum of the particular item group.
e.g. there are many item groups like 72absc, 72dmap, 40abds, 23asrt and there is sales value for these group.
I need sum of values only for 72dmap item group.
Kindly help.
Solved! Go to Solution.
Hi @AtulSutar ,
Try a measure like this:
_72dmapSales =
CALCULATE(
SUM(yourTable[Sales]),
yourTable[Item Group] = "72dmap"
)
Pete
Proud to be a Datanaut!
Hi @AtulSutar ,
Try a measure like this:
_72dmapSales =
CALCULATE(
SUM(yourTable[Sales]),
yourTable[Item Group] = "72dmap"
)
Pete
Proud to be a Datanaut!
Check out the November 2023 Power BI update to learn about new features.
Read the latest Fabric Community announcements, including updates on Power BI, Synapse, Data Factory and Data Activator.