The ultimate Microsoft Fabric, Power BI, Azure AI, and SQL learning event: Join us in Stockholm, September 24-27, 2024.
Save €200 with code MSCUST on top of early bird pricing!
Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. Get started
Bonjour à vous,
Je souhaite réaliser un budget prévisionnel annuel. J'ai des dépenses poncutelles, un mois donné, donc pas de problème pour cela.
Par contre, j'ai aussi des montants mensuels qui doivent être multipliés par le nombre de mois concernés par la période (peut importer le jour, le montant concerne une dépense par mois).
Je n'arrive pas à clarifier comment m'y prendre, pour établir un montant annuel, qui reprend chaque mois les dépenses prévues. J'ai tenté des formules DAX, mais je suis trop débutant pour arriver à la structurer ... 😞
Voici un exemple de données à traiter. La dernière colonne est le calcul réalisé manuellement qui devrait être fait, et non une simple somme de la colonne Montant .
Solved! Go to Solution.
Hi @Oasis16 ,
Please try the DAX below:
Total Amount =
IF(
OR(ISBLANK('Table'[StartDate]), ISBLANK('Table'[EndDate])),
'Table'[Amount],
'Table'[Amount] * (DATEDIFF('Table'[StartDate], 'Table'[EndDate], MONTH) + 1)
)
The return result is shown below:
Best Regards,
Dino Tao
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @Oasis16 ,
Please try the DAX below:
Total Amount =
IF(
OR(ISBLANK('Table'[StartDate]), ISBLANK('Table'[EndDate])),
'Table'[Amount],
'Table'[Amount] * (DATEDIFF('Table'[StartDate], 'Table'[EndDate], MONTH) + 1)
)
The return result is shown below:
Best Regards,
Dino Tao
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Merci beaucoup, c'est exactement ce qu'il fallait !! 😘
Hi @Oasis16 ,
I guess you want to calculate the amount multiplied by the number of months between the start date and the end date?
Best Regards,
Dino Tao
Join the community in Stockholm for expert Microsoft Fabric learning including a very exciting keynote from Arun Ulag, Corporate Vice President, Azure Data.
Check out the August 2024 Power BI update to learn about new features.
Learn from experts, get hands-on experience, and win awesome prizes.
User | Count |
---|---|
18 | |
18 | |
16 | |
14 | |
12 |
User | Count |
---|---|
36 | |
35 | |
20 | |
18 | |
18 |