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

Compete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.

Reply
Anonymous
Not applicable

DAX measure does not return the same value more than 1 time

Hey everyone,

So, the problem is that a fairly simple measure does not return a value twice or more if the value of 'Measure 1' is same:

MFR = 

DIVIDE (
         SELECTEDVALUE('Table'[FR]), 12
)

 

 

PreacherBaby_0-1680080504096.png

 

PreacherBaby_1-1680080531942.png

 

PreacherBaby_2-1680080563756.png

 

As you can see, after returning 8 once, it doesn't do anything until it gets 9, then 10. There are three 10 values, and it returns only one of them. Same issue with other values.

 

How do I fix it so it could return values?

1 ACCEPTED SOLUTION
tamerj1
Super User
Super User

@Anonymous 
Please try

MFR =
DIVIDE (
    CALCULATE ( SELECTEDVALUE ( 'Table'[FR] ), ALLSELECTED ( 'Date' ) ),
    12
)

View solution in original post

2 REPLIES 2
tamerj1
Super User
Super User

@Anonymous 
Please try

MFR =
DIVIDE (
    CALCULATE ( SELECTEDVALUE ( 'Table'[FR] ), ALLSELECTED ( 'Date' ) ),
    12
)
tamerj1
Super User
Super User

Hi @Anonymous 
Please provide sample of the data

Helpful resources

Announcements
August Power BI Update Carousel

Power BI Monthly Update - August 2025

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

August 2025 community update carousel

Fabric Community Update - August 2025

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