The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
Hola Amigos,
alguien puede ayudarme a ajustar un tablero que he realizado para que haga el calculo de algunas medidas teniendo en cuenta que la fecha seleccionada dentro del segmentador de la fecha de la tabla calendario se encuentre dentro de una fecha inicial y una fecha final, de la tabla condiciones; La idea sería, tengo la siguiente medida:
Hi @Afleon ,
Thanks for reaching out to us with your requirement. Base on your description, it seems that you are trying to get the value during date period. You can refer the following links to get it.
Solved: DAX with calculation between start and finish date... - Microsoft Fabric Community
Cross Join =
FILTER (
CROSSJOIN ( 'Fact Table', 'Calendar date' ),
[Date] >= 'Fact Table'[StartDate]
&& [Date] < 'Fact Table'[FinishDate]
)
Solved: How to sum values by period based on the start and... - Microsoft Fabric Community
ValueAdded =
CALCULATE (
SUM( Project[AddedValue/Month] );
FILTER (
Project;
Project[Start] <= CALCULATE ( MAX ( Dates[Date]) )
);
FILTER ( Project; Project[End] >= CALCULATE ( MIN ( Dates[Date] ) ) )
)
If the above one can't help you, please provide some raw data in your table (exclude sensitive data) with Text format and your expected result with backend logic and special examples? It would be helpful to find out the solution. You can refer the following links to share the required info:
How to provide sample data in the Power BI Forum
How to Get Your Question Answered Quickly
And It is better if you can share a simplified pbix file. You can refer the following link to upload the file to the community. Thank you.
How to upload PBI in Community
Best Regards
User | Count |
---|---|
13 | |
8 | |
6 | |
6 | |
5 |
User | Count |
---|---|
24 | |
14 | |
13 | |
8 | |
8 |