Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Learn more

Reply
sunil222
Helper II
Helper II

How to show dynamic values based on user selection in column

How to show dynamic values based on user selection in column.

 

have a slicer i.e on Month shows values like   Jan 23 , feb 23 ..... so on

 

i created a calculated column to show the current month i.e Jan 24.

 

now user selects the slicer value Nov 23 , that is the current month to show Nov 23  values in the column and also column header changes to nov 23 this is purely based on user selection.

 

please help me on this very critical for me

 

current month dax logic used = 

Current Month Actual =
var a = EOMONTH(TODAY(),-2)+1
var b = EOMONTH(TODAY(),-1)
return
CALCULATE(SUM(SalesTeamPerformance[Actual]),KEEPFILTERS(DATESBETWEEN('Date'[Date],a,b)))
 
 

 

1 ACCEPTED SOLUTION
Anonymous
Not applicable

HI @sunil222,

Current power bi does not support to create dynamic column/table based on filter effect. They are not host on the same level and you can't use the child level to affect its parent. I'd like to suggest creating measure expression to instead.

Notice: the data level of power bi(from parent to child level)

Database(external) -> query table(query, custom function, query parameters) -> data model table(table, calculate column/table) -> data view with virtual tables(measure, visual, filter, slicer)

Regards,

Xiaoxin Sheng

View solution in original post

1 REPLY 1
Anonymous
Not applicable

HI @sunil222,

Current power bi does not support to create dynamic column/table based on filter effect. They are not host on the same level and you can't use the child level to affect its parent. I'd like to suggest creating measure expression to instead.

Notice: the data level of power bi(from parent to child level)

Database(external) -> query table(query, custom function, query parameters) -> data model table(table, calculate column/table) -> data view with virtual tables(measure, visual, filter, slicer)

Regards,

Xiaoxin Sheng

Helpful resources

Announcements
Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

October Power BI Update Carousel

Power BI Monthly Update - October 2025

Check out the October 2025 Power BI update to learn about new features.

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors