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

Prepping for a Fabric certification exam? Join us for a live prep session with exam experts to learn how to pass the exam. Register now.

Reply
DJsummers
Helper I
Helper I

Help with a measure

I have 2 tables, which for the purposes of my question I have made very basic:

DJsummers_2-1615392183743.png

 

The table on the left will change each day - the day will change and the temperature will change.

 

The table on the right is the standard of which I want the temperature to be as close to as possible, dependant on what day it is (it usually goes up to 50 days)

My question - is it possible to create a meaure where I can subtract the standard target temp from the actual temp that changes each day? For example, tomorrow will be Day 2 for the left table and let's say the temperature will be 34, can I then get it to subtract the value from Day 2 on the right table? (34-32.30=1.7)

Thanks in advance!
Dan

 

1 ACCEPTED SOLUTION
BA_Pete
Super User
Super User

Hi @DJsummers ,

 

You could try a measure like this, where 'aTable' is your single changing value, and 'bTable' is your target table.

_tempDiff = 
VAR todayDay = MAX(aTable[day])
RETURN
CALCULATE(
    MAX(aTable[temp]) - MAX(bTable[temp]),
    FILTER(
        bTable,
        bTable[day] = todayDay
    )
)

 

This gives me the following output:

 

BA_Pete_0-1615394004368.png

 

Pete



Now accepting Kudos! If my post helped you, why not give it a thumbs-up?

Proud to be a Datanaut!




View solution in original post

3 REPLIES 3
BA_Pete
Super User
Super User

Hi @DJsummers ,

 

You could try a measure like this, where 'aTable' is your single changing value, and 'bTable' is your target table.

_tempDiff = 
VAR todayDay = MAX(aTable[day])
RETURN
CALCULATE(
    MAX(aTable[temp]) - MAX(bTable[temp]),
    FILTER(
        bTable,
        bTable[day] = todayDay
    )
)

 

This gives me the following output:

 

BA_Pete_0-1615394004368.png

 

Pete



Now accepting Kudos! If my post helped you, why not give it a thumbs-up?

Proud to be a Datanaut!




Thanks a bunch, much appreciated!

amitchandak
Super User
Super User

@DJsummers , Create a new column in table 2(standard)

 

standard[temperature] - maxx(filter(changes, changes[day] = standard[day]),changes[temperature])

 

or a measure

measure =
var _max = maxx(allselected(changes), changes[day])
return
maxx(filter(standard, standard[day] =_max),standard[temperature]) - maxx(filter(changes,changes[day] =_max),changes[temperature])

Full Power BI Video 20 Hours YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

Helpful resources

Announcements
PBIApril_Carousel

Power BI Monthly Update - April 2025

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

Notebook Gallery Carousel1

NEW! Community Notebooks Gallery

Explore and share Fabric Notebooks to boost Power BI insights in the new community notebooks gallery.

April2025 Carousel

Fabric Community Update - April 2025

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