Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
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
@Anonymous Can you share the pbix file?
BBF
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.
@Anonymous 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:
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.
| User | Count |
|---|---|
| 6 | |
| 6 | |
| 4 | |
| 4 | |
| 4 |
| User | Count |
|---|---|
| 24 | |
| 17 | |
| 10 | |
| 7 | |
| 6 |