Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
Hello everyone,
Sorry, I got one problem...
I m gonna try to be clear... 😉
I got a Table "Reservation" with id
The idReservation is linked with 2 Tables. One of it contains the amounts, the other contains the planning (the dates).
And the Table which contains the Date is linked with my Table "date" obviously.
(You can notice that a reservation may be on several days...si on serveral month)
And I would like my amount for each month.
I think you have all the informations.
Thank you for all,
Hi bapt69,
What's the table structure between the two tables? Suppose the relationship between table ’Date‘ and 'Reservation' is one-many, you can create a calculate column using DAX below to achieve amount in each Month:
Amount =
CALCULATE (
COUNT ( Reservation[id] ),
FILTER ( Date, MONTH ( Date[date] ) = MONTH ( EARLIER ( Date[Date] ) ) )
)
Regards,
Jimmy Tao
Sorry, the dates are on the Table wich is linked at Reservation.
There is no Date on the table Reservation.
Date -> Ressources (with planning) <- Reservations -> Inscriptions -> InsciptionLines (with amounts)
(All links one-many)
Check out the November 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
| User | Count |
|---|---|
| 103 | |
| 80 | |
| 59 | |
| 51 | |
| 46 |