Get certified for free when you join Fabric Data Days 2026 and dive into Fabric, Power BI, SQL, AI, and other essential data skills.
Join nowTry your skills in the Power BI Dataviz World Championship! Round one ends June 26. Join 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:
Don't miss out on Data Days, June 15 through August 7. Learn Fabric, Power BI, SQL, AI and more.
Check out the May 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 3 | |
| 2 | |
| 2 | |
| 2 | |
| 1 |