This time we’re going bigger than ever. Fabric, Power BI, SQL, AI and more. We're covering it all. You won't want to miss it.
Learn moreLevel up your Power BI skills this month - build one visual each week and tell better stories with data! 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
@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:
Check out the April 2026 Power BI update to learn about new features.
Sign up to receive a private message when registration opens and key events begin.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
| User | Count |
|---|---|
| 5 | |
| 4 | |
| 3 | |
| 3 | |
| 3 |
| User | Count |
|---|---|
| 9 | |
| 9 | |
| 7 | |
| 6 | |
| 6 |