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
Anonymous
Not applicable

Cards with first and last year values

I want 2 cards with the value from the first year and final year considering that:

 

Because there are years with blank values->

Inicial Year= calculate(min(date[year]);filter(table;[values]>0))

Final Year= calculate(max(date[year]);filter(table;[values]>0))

Sem Título.jpg

 

 

 

1 ACCEPTED SOLUTION

 Hello,

 

you can adapt @Anonymous' solution

 

 

Min Data1 = 
VAR MinYear = MIN(DateTable[Year])
CALCULATE ( SUM ( Table1[data1] ), FILTER ( DateTable, DateTableYear = MinYear) )

 Max is similar. Give it a try a let us know.

View solution in original post

3 REPLIES 3
Anonymous
Not applicable

I have set the following table to use as an example

Table 1 

Date, data1, data2

1 jan 2011,1,13

1 feb 2011,2,14

1 mar 2011,3,15

1 jan 2012,4,16

1 feb 2012,5,17

1 mar 2012,6,18

1 jan 2013,7,19

1 feb 2013,8,20

1 mar 2013,9,21

1 jan 2014,10,22

1 feb 2014,11,23

1 mar 2014,12,24

 

The following measures then give the values you were looking for 

 

Min Data1 = 
CALCULATE (
    SUM ( Table1[data1] ),
    FILTER ( Table1, Table1[date] = MIN ( Table1[date] ) )
)
Max Data2 = 
CALCULATE (
    SUM ( Table1[data2] ),
    FILTER ( Table1, Table1[date] = MAX ( Table1[date] ) )
)
Anonymous
Not applicable

Don´t work because the column Date Year is a Dimension Table.

Sem Título.jpg

 

Sem Título2.jpg

 

 

 

 

 

 Hello,

 

you can adapt @Anonymous' solution

 

 

Min Data1 = 
VAR MinYear = MIN(DateTable[Year])
CALCULATE ( SUM ( Table1[data1] ), FILTER ( DateTable, DateTableYear = MinYear) )

 Max is similar. Give it a try a let us know.

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.

Top Solution Authors