Power BI is turning 10, and we’re marking the occasion with a special community challenge. Use your creativity to tell a story, uncover trends, or highlight something unexpected.
Get startedJoin us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register now.
Hi guys, i have a table wiht this columns:
Fecha | Atrasos2 | Atrasos3 | Capital_MN |
30/9/2018 | 5 | 5 | 478 |
31/10/2019 | 40 | 40 | 9821 |
30/11/2019 | 56 | 56 | 8425 |
31/12/2019 | 87 | 87 | 478 |
31/1/2020 | 10 | 0 | 1000 |
28/2/2020 | 50 | 0 | 2000 |
31/3/2020 | 1 | 0 | 50 |
28/4/2020 | 12 | 0 | 700 |
31/10/2020 | 2 | 0 | 800 |
30/11/2020 | 1 | 0 | 1550 |
31/1/2021 | 10 | 0 | 1205 |
28/2/2021 | 600 | 600 | 200 |
30/4/2021 | 20 | 20 | 355 |
Atrasos2: They are the days behind without taking into account the covid issue.
Atrasos3: It is a calculated column where if the dates are between 31/01/2020 and 31/01/2021 (covid issue), the days of arrears are zeroed.
I also have this measure:
Solved! Go to Solution.
@ArquimedesP
Use the measure given below:
SUMAPRODUCTO CARTERA =
VAR __V =
SELECTEDVALUE ( Table[VAlue], "Normal" )
RETURN
DIVIDE (
SUMX (
VW_Cartera,
IF (
__v = "Covid",
VW_Cartera[Atrasos3] * VW_Cartera[Capital_MN],
VW_Cartera[Atrasos2] * VW_Cartera[Capital_MN]
)
),
SUM ( VW_Cartera[Capital_MN] )
)
⭕ Subscribe and learn Power BI from these videos
⚪ Website ⚪ LinkedIn ⚪ PBI User Group
it worked perfectly! Thanks a lot!
@ArquimedesP
Use the measure given below:
SUMAPRODUCTO CARTERA =
VAR __V =
SELECTEDVALUE ( Table[VAlue], "Normal" )
RETURN
DIVIDE (
SUMX (
VW_Cartera,
IF (
__v = "Covid",
VW_Cartera[Atrasos3] * VW_Cartera[Capital_MN],
VW_Cartera[Atrasos2] * VW_Cartera[Capital_MN]
)
),
SUM ( VW_Cartera[Capital_MN] )
)
⭕ Subscribe and learn Power BI from these videos
⚪ Website ⚪ LinkedIn ⚪ PBI User Group
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
Check out the June 2025 Power BI update to learn about new features.
User | Count |
---|---|
14 | |
11 | |
10 | |
10 | |
9 |
User | Count |
---|---|
18 | |
13 | |
12 | |
11 | |
8 |