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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
elf_ranger91
Frequent Visitor

subtract row values (where values are measure) *circular dependency issue*

Hi Guys,

 

I have a table with 3 columns as shown below.  The column "sales gap (usd) column)" is a measure that has a relationship (that is to say, has a connection) with "remaining months to recognize" but the measure is not directly dependent on it.

power bi table.png

 

Now I want to find the difference between the row values in the "sale gap (usd)" column. I add a new column and write this expression: 

 

Diff. in Sales Gap =

             'New Deals Goal'[Sales Gap (USD) column] -

                     IF('New Deals Goal'[Index]=0; 'New Deals Goal'[Sales Gap (USD) column];

                                                     LOOKUPVALUE('New Deals Goal'[Sales Gap (USD) column];'New Deals Goal'[Index];'New                                                                                  Deals Goal'[Index]-1))

As seen below:

 

table2.png

 I have a circular dependency issue. I have read about it and I understand the problem, but how do I solve this?

 

Thank you. 

 

 

 

 

1 ACCEPTED SOLUTION
Baskar
Resident Rockstar
Resident Rockstar

Hi,

 

Try this one .

 

 

Column =
var A= CALCULATE( MAX('New Deals Goal'[Index]))-1
return
If('New Deals Goal'[Index]=0,
'New Deals Goal'[Sales Gap (USD) column],
'New Deals Goal'[Sales Gap (USD) column] - CALCULATE(SUM('New Deals Goal'[Sales Gap (USD) column]),FILTER('New Deals Goal','New Deals Goal'[Index]=A))
)

View solution in original post

1 REPLY 1
Baskar
Resident Rockstar
Resident Rockstar

Hi,

 

Try this one .

 

 

Column =
var A= CALCULATE( MAX('New Deals Goal'[Index]))-1
return
If('New Deals Goal'[Index]=0,
'New Deals Goal'[Sales Gap (USD) column],
'New Deals Goal'[Sales Gap (USD) column] - CALCULATE(SUM('New Deals Goal'[Sales Gap (USD) column]),FILTER('New Deals Goal','New Deals Goal'[Index]=A))
)

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

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