Don't miss your chance to take the Fabric Data Engineer (DP-600) exam for FREE! Find out how by attending the DP-600 session on April 23rd (pacific time), live or on-demand.
Learn moreNext up in the FabCon + SQLCon recap series: The roadmap for Microsoft SQL and Maximizing Developer experiences in Fabric. All sessions are available on-demand after the live show. Register now
Hi Guys,
How could I get the last date considering 2 columns: the project and the project module?
For example, in the table below, I need to consider the last date of the Module (M1) of the Subproject (Botucatu - Veronica 1) which is 01/01/2023.
I tried to use the function, but it didn't work:
_Ultima Data do repasse =
VAR _max = maxx(
filter(
ALLSELECTED(f_reaal_realizado), f_reaal_realizado[Subprojeto] = Max(f_reaal_realizado[Subprojeto])),f_reaal_realizado[Data Repasse])
RETURN
CALCULATE(
max(f_reaal_realizado[Data Repasse]),
filter((f_reaal_realizado) , f_reaal_realizado[Data Repasse] =_max))
Solved! Go to Solution.
Hi @kasife ,
According to your description, here are my steps you can follow as a solution.
(1) This is my test data.
(2) We can create a measure.
_Ultima Data do repasse =
CALCULATE (
MAX ( 'f_reaal_realizado'[Data Repasse] ),
FILTER (
ALLEXCEPT (
'f_reaal_realizado',
'f_reaal_realizado'[Subproject],
'f_reaal_realizado'[Module]
),
'f_reaal_realizado'[Data Repasse]
)
)
(3) Then the result is as follows.
Best Regards,
Neeko Tang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @kasife ,
According to your description, here are my steps you can follow as a solution.
(1) This is my test data.
(2) We can create a measure.
_Ultima Data do repasse =
CALCULATE (
MAX ( 'f_reaal_realizado'[Data Repasse] ),
FILTER (
ALLEXCEPT (
'f_reaal_realizado',
'f_reaal_realizado'[Subproject],
'f_reaal_realizado'[Module]
),
'f_reaal_realizado'[Data Repasse]
)
)
(3) Then the result is as follows.
Best Regards,
Neeko Tang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
It worked great, thank you so much @Anonymous
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.
Experience the highlights from FabCon & SQLCon, available live and on-demand starting April 14th.
| User | Count |
|---|---|
| 48 | |
| 40 | |
| 40 | |
| 20 | |
| 16 |
| User | Count |
|---|---|
| 70 | |
| 67 | |
| 32 | |
| 27 | |
| 26 |