March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early bird discount ends December 31.
Register NowBe one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now
I have 2 tables, which for the purposes of my question I have made very basic:
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
Solved! Go to Solution.
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:
Pete
Proud to be a Datanaut!
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:
Pete
Proud to be a Datanaut!
Thanks a bunch, much appreciated!
@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])
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Your insights matter. That’s why we created a quick survey to learn about your experience finding answers to technical questions.
Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.
User | Count |
---|---|
129 | |
90 | |
75 | |
58 | |
53 |
User | Count |
---|---|
200 | |
104 | |
101 | |
67 | |
55 |