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! Learn more
Hi Everyone
I have data like this
userid | skill | profeciency | date
1 | Java | Low | Jan 1
1 | Java | Medium | Jan 15
1 | Java | High | Jan 30
2 | PHP | Medium | Jan 10
2 | PHP | High | Jan 15
1 | PHP | Medium | Jan 10
1 | PHP | High | Jan 15
In bar chart i want to show
skills on x-axis, count of user and last proficiency on legend
Lets say the selected date is 30th jan
so output should be
Java - high - 1
php - high - 2
Lets say the selected date is 15th jan
Java - medium - 1
php - high - 2
Lets say the selected date is 12th jan
Java - Low - 1
Would this work:
CountUsers:=
VAR SelectedDate = LASTDATE('Table1'[date])
RETURN
CALCULATE(COUNTROWS(Table1),Table1[date]<=SelectedDate)
No this is still giving me same result
is the 'date' field formatted as date type?
if you are getting the result can you share your pbix file?
Yes it is
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.