Microsoft is giving away 50,000 FREE Microsoft Certification exam vouchers!
Enter the sweepstakes now!Prepping for a Fabric certification exam? Join us for a live prep session with exam experts to learn how to pass the exam. Register now.
I need to automate this measurement to show the value BETWEEN THE PERIOD OF THE MONTH of each column period:
ROE = (DIVIDE([Lucro Líquido], [Patrimonio Liquido],0) / 1000)
Hi @Diego_Vialle ,
I created some data:
Here are the steps you can follow:
1. Use Enter data to create a table.
2. Create calculated column.
month =
FORMAT('Table'[Date],"mmm")&"/"&YEAR('Table'[Date])
3. Create measure.
Measure =
var _1=
CALCULATE(SUM('Table'[Patrimonio Liquido]),FILTER(ALL('Table'),
'Table'[month]=MAX('Table'[month])))
var _2=
CALCULATE(SUM('Table'[Lucro Líquido]),FILTER(ALL('Table'),
'Table'[month]=MAX('Table'[month])))
return
DIVIDE(_1,_2)
Measure 2 =
var _1=
CALCULATE(SUM('Table'[Patrimonio Liquido]),FILTER(ALL('Table'),
'Table'[month]=MAX('Table'[month])))
var _2=
CALCULATE(SUM('Table'[Amount1]),FILTER(ALL('Table'),
'Table'[month]=MAX('Table'[month])))
return
DIVIDE(_1,_2)
Measure 3 =
SWITCH(
TRUE(),
MAX('Table2'[Group])="Margem Liquida",[Measure],
MAX('Table2'[Group])="ROE",[Measure 2])
4. Result:
If you need pbix, please click here.
Best Regards,
Liu Yang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly
@Diego_Vialle , Not very clear. If you want to save on this month, last month etc. You can have a column
Month Type = Switch( True(),
eomonth([Date],0) = eomonth(Today(),-1),"Last Month" ,
eomonth([Date],0)= eomonth(Today(),0),"This Month" ,
Format([Date],"MMM-YYYY")
)
User | Count |
---|---|
17 | |
17 | |
15 | |
13 | |
12 |
User | Count |
---|---|
10 | |
8 | |
8 | |
7 | |
6 |