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
DavidB023
Helper III
Helper III

Variable Column

Hi everybody !

 

Here is my table : 

Capture.PNG

 I want to create a measure with another value named A  (which is constant) divide by my second column named B. In fact, I have a slicer with each dates but when I diselected my date, there is All. 

I want when All appear on my slicer, a measure with A divide by the last B here 615.

 

So I try : 

C = IF (
DISTINCTCOUNT ( 'Données'[Date] ) = 1;
SUM ( B);
Lastnonblank(B;"")
))

 

 

It worked but it divide A by 600 (november 2017), so strange..

Thanks

Best regards 

David

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

Hi @DavidB023

I make a test with your data on my site.

Create measures

Measure = CALCULATE(LASTDATE(Sheet1[year]),ALL(Sheet1))
Measure 2 = CALCULATE(LASTNONBLANK(Sheet1[B],1),FILTER(ALL(Sheet1),[year]=[Measure]))
Measure 3 = DIVIDE(615,[Measure 2])

8.png

 

 

Best Regards

Maggie

View solution in original post

2 REPLIES 2
v-juanli-msft
Community Support
Community Support

Hi @DavidB023

I make a test with your data on my site.

Create measures

Measure = CALCULATE(LASTDATE(Sheet1[year]),ALL(Sheet1))
Measure 2 = CALCULATE(LASTNONBLANK(Sheet1[B],1),FILTER(ALL(Sheet1),[year]=[Measure]))
Measure 3 = DIVIDE(615,[Measure 2])

8.png

 

 

Best Regards

Maggie

Hi @v-juanli-msft,

Thanks a lot for your solution ! 

Finally I used your Measure and Measure2 and I inject in :

Measure3 = DIVIDE( A ;

IF( DISTINCTCOUNT ( 'Sheet1'[year] ) = 1 ;
B ; 
[Mesure2]
))

 

It works like I want, 

Thanks

Best regards

David

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.