Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes! Register now.
Hi,
We have a single table with a list of Virtual Machines and their day-wise consumption for a complete month. Each virtual machine, it has 31 separate entries for each day, respectively. We have calculated the value for cost as
VM_Cost= Table1[Consumed Hours] * Table1[Cost_Per_Hour]
Now, along with this value, we also need to add a fixed component of say 10000. So 10000 has to be divided and applied equally to all the virtual machines.
Fixed_Cost = 1000/ DISTINCTCOUNT[VM Name]
But, when we add this to the above formula of VM_Cost, this value is getting added for each and every row that is for 31 days individually, and for every calculation, it is taking the distinct count value as 1.
How can we add this fixed value uniformly across all the running days for each virtual machine?
Hi, cant you use measure ? Does not look like its something you would want to filter on?
Not sure how you are adding the fixed cost, share few of the dax snippets and a screenshot.
VM_Cost =
var instance_count = SUMX(VALUES(UsageDetails), CALCULATE(DISTINCTCOUNT(UsageDetails[Instance ID])))
return
{
SUMX(VALUES(UsageDetails), 10 * RELATED('UsageDetails'[Consume Quantity])) +
(DIVIDE(DIVIDE([FixedPrice], instance_count ), DISTINCTCOUNT(UsageDetails[Day]))
}
User | Count |
---|---|
9 | |
8 | |
5 | |
4 | |
3 |