Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. Get started
hello community,
i need help because i am stuck with a table not responding to my request:
i have three colonnes.
From the same table but impossible to find what I want :
Project Name
Consume workload
distinct number of Authors
only 1 filter from a slicer : date week for a date master table.
The problem it's the table show me only one project and there author.
I'm from the table view I can see all the infos. I don't understand why not on the report view.
thx for your help
Hello @BeaBF ,
I apologize, but I can't share the data as it is sensitive.
However, I can share my formulas with you if that helps.
@Raphiraf Yes, shares formulas and if you can a sample of datas on which you calculate those formulas.
In particular, those datas that you should see on visuals but don't return.
One question, the date table has a relationship with the fact table?
BBF
Context: We faced challenges in correctly filtering data in a specific visual of our Power BI report, particularly in calculating the distinct count of authors by project and week using a date slicer.
Consumed Workload:
Consumed Workload =
CALCULATE(
SUM('Worklogs'[Division]),
REMOVEFILTERS('Date Master'[Week])
)
Purpose: To calculate the sum of divisions from worklogs without being affected by the Date Master week filter.
Distinct Authors by Week and Project:
Distinct Authors by Week and Project =
CALCULATE(
DISTINCTCOUNT(Worklogs[AUTHOR_NAME]),
TREATAS(VALUES('Date Master'[Week]), Worklogs[Week]),
TREATAS(VALUES('Date Master'[Year]), Worklogs[Year])
)
Purpose: To calculate the distinct count of authors by project and week by applying Date Master filters to Worklogs.
Projects (PROJECT_ID) to Issues (PROJECT_ID):
Issues (ISSUE_ID) to Worklogs (ISSUE_ID):
Date Master (Week) to Worklogs (Week):
To resolve this issue, I decided to use two distinct date slicers:
Consumed Workload: