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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
mohanpal
Frequent Visitor

Calculation based on Date selection

Hi, 

I need to replicate COL B in PowerBI, it should dynamically change the value based on date selection.

 

For example: if I select date 02/01/2021, it should change to that date and make default value of  100  against that date.

I have tried using MIN, max date and If condition but it's not working. 

 

mohanpal_1-1660714417761.png

 

 

1 ACCEPTED SOLUTION
v-zhangti
Community Support
Community Support

Hi, @mohanpal 

 

You can try the following methods.

Measure:

COL B =
IFERROR (
    100 * SELECTEDVALUE ( 'Table'[Date] )
        / CALCULATE ( MIN ( 'Table'[Date] ), ALL ( 'Table' ) ),
    BLANK ()
)

 

vzhangti_0-1661146589018.pngvzhangti_1-1661146609505.png

You can select output values by date. Is this the result you expect?

 

Best Regards,

Community Support Team _Charlotte

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

2 REPLIES 2
v-zhangti
Community Support
Community Support

Hi, @mohanpal 

 

You can try the following methods.

Measure:

COL B =
IFERROR (
    100 * SELECTEDVALUE ( 'Table'[Date] )
        / CALCULATE ( MIN ( 'Table'[Date] ), ALL ( 'Table' ) ),
    BLANK ()
)

 

vzhangti_0-1661146589018.pngvzhangti_1-1661146609505.png

You can select output values by date. Is this the result you expect?

 

Best Regards,

Community Support Team _Charlotte

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Dhacd
Resolver III
Resolver III

@mohanpal Try using a measure, the calculated column will run once when you open the report. 

If you need help in writing the measure just reply.

 

Use the selectedvalue function in measure to achieve the same.

If this post helps, then please consider accepting it as the solution to help the other members find it more quickly.

Thanks and Regards,
Atma.

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.

Top Solution Authors