March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early bird discount ends December 31.
Register NowBe one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now
Hi all,
I have an issue that I couldnt find answer for.
I have this table and Im trying to calculate the amount based on the relative duration.
For example, ?for the first row- 18/103*40K=6990
Thanks for your help!
Hi,
Its lookup column from different table, using related function. PO# is the key
@gkakun ,
try this measure,
Activity calculation =
VAR _activityDuration = SUM(Table[ Activity Duration])
VAR _allActivityDuration = CALCULATE(
SUM(Table[ Activity Duration]),ALL(Table))
VAR _result = DIVIDE(_activityDuration ,_allActivityDuration )*40000
RETURN _result
Thanks,
Arul
Thanks a lot for your help.
This is like the measure looks like, it should provide 40K eventually, but its ot the case
and of course, the 40K should be taken from the SC amount, since its changing between the POs
@gkakun ,
then use SC amount in the measure.
Activity calculation =
VAR _activityDuration = SUM(Table[ Activity Duration])
VAR _allActivityDuration = CALCULATE(
SUM(Table[ Activity Duration]),ALL(Table))
VAR _result = DIVIDE(_activityDuration ,_allActivityDuration )*[SC Count]
RETURN _result
Thanks,
Arul
Thanks a lot! unfortunately its not working 😞
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.
User | Count |
---|---|
114 | |
76 | |
57 | |
52 | |
44 |
User | Count |
---|---|
168 | |
116 | |
63 | |
57 | |
50 |