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
Im trying to create a new column that sums the exposure by date. the date column has 5 unique dates this column should likewise only show 5 diffent totals. this is my expression and I am getting errors. ?
Solved! Go to Solution.
Hi @22LACMT ,
You can create a column as below:-
Totaltier1PIT1 =
CALCULATE (
SUM ( 'Portfolio Percentage totals PIT'[Tier1Exposure] ),
FILTER (
'Portfolio Percentage totals PIT',
'Portfolio Percentage totals PIT'[ver]
= EARLIER ( 'Portfolio Percentage totals PIT'[ver] )
)
)
Best Regards,
Samarth
If this post helps, please consider accepting it as the solution to help the other members find it more quickly.
Appreciate your Kudos!!
Connect on Linkedin
Hi @22LACMT ,
You can create a column as below:-
Totaltier1PIT1 =
CALCULATE (
SUM ( 'Portfolio Percentage totals PIT'[Tier1Exposure] ),
FILTER (
'Portfolio Percentage totals PIT',
'Portfolio Percentage totals PIT'[ver]
= EARLIER ( 'Portfolio Percentage totals PIT'[ver] )
)
)
Best Regards,
Samarth
If this post helps, please consider accepting it as the solution to help the other members find it more quickly.
Appreciate your Kudos!!
Connect on Linkedin
If I wanted to group the exposure by a category using a category column and point in time would I use the above and add an additional filter funtion for the category column?
Perfect thank you!
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.