Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Earn the coveted Fabric Analytics Engineer certification. 100% off your exam for a limited time only!

Reply
snifer
Post Patron
Post Patron

calculate account gp

account codecompanyamount
11999010
1599905
53999075
56999055
589990566
69999074
76999054
119991456
1599912545
539991445
5699914545
5899914456
69999145
76999145

 

given this table with account code company and amount

, i want be able to calculate for example for each company

the measure of account code 15999/58999

how i can do that?

1 ACCEPTED SOLUTION
v-frfei-msft
Community Support
Community Support

Hi @snifer,

 

To create a measure as below.

 

Measure = 
VAR sum2 =
    CALCULATE (
        SUM ( Table1[amount] ),
        FILTER ( Table1, Table1[account code] = 15999 )
    )
VAR sum1 =
    CALCULATE (
        SUM ( Table1[amount] ),
        FILTER ( Table1, Table1[account code] = 58999 )
    )
RETURN
    sum2 / sum1

Capture.PNG

For more details, please check the pbix as attached.

 

Regards,

Frank

Community Support Team _ Frank
If this post helps, then please consider Accept it as the solution to help the others find it more quickly.

View solution in original post

6 REPLIES 6
v-frfei-msft
Community Support
Community Support

Hi @snifer,

 

To create a measure as below.

 

Measure = 
VAR sum2 =
    CALCULATE (
        SUM ( Table1[amount] ),
        FILTER ( Table1, Table1[account code] = 15999 )
    )
VAR sum1 =
    CALCULATE (
        SUM ( Table1[amount] ),
        FILTER ( Table1, Table1[account code] = 58999 )
    )
RETURN
    sum2 / sum1

Capture.PNG

For more details, please check the pbix as attached.

 

Regards,

Frank

Community Support Team _ Frank
If this post helps, then please consider Accept it as the solution to help the others find it more quickly.

Hi @snifer ,

 

Does that make sense? If so, kindly mark my answer as the solution to close the case please. Thanks in advance.

 

Regards,
Frank

Community Support Team _ Frank
If this post helps, then please consider Accept it as the solution to help the others find it more quickly.
yelsherif
Resolver IV
Resolver IV

Is there a relation between account codes, or you want to specifically calculate the values for 15999/58999, please elaborate

I need to calculate the amount associated to account code 15999 / amount associate with 58999 associated to company 1 (456/4456) 

I need to calculate the amount associated to account code 15999 / amount associate with 58999 associated to company 0 (10/566)

you can create a measure like:

Measure0 = divide(

       calculate(sum(accounts[amount]),accounts[account code] = 15999, accounts[company] = 0), 
       calculate(sum(accounts[amount]),accounts[account code] = 58999, accounts[company] = 0),
       0)

 

Measure1 = divide(

       calculate(sum(accounts[amount]),accounts[account code] = 15999, accounts[company] = 1), 
       calculate(sum(accounts[amount]),accounts[account code] = 58999, accounts[company] = 1),
       0)

@yelsherif

 

on the example i put just 2 companies but i got more than 50 soi need measure to calculate for each company, making a measure for each company its not gonna work

Helpful resources

Announcements
April AMA free

Microsoft Fabric AMA Livestream

Join us Tuesday, April 09, 9:00 – 10:00 AM PST for a live, expert-led Q&A session on all things Microsoft Fabric!

March Fabric Community Update

Fabric Community Update - March 2024

Find out what's new and trending in the Fabric Community.