The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends September 15. Request your voucher.
Hello!!!
I want to get the latest target based on the latest date and for the date format has time also, so basically the latest value based on max date and time.
The expeted output of this is 95, i have used max date funcation but it does not seem to work.
Project Name | Modified Date | Target |
BASIC | 13-Dec-22 14:00 | 95 |
BASIC | 13-Dec-22 13:00 | 90 |
BASIC | 13-Dec-22 12:00 | 85 |
Any suggest, how to get this working? Thanks a lot in advance!!
Solved! Go to Solution.
hi @JCK2
try to plot a visual table with a measure of this:
the dataset:
Thanks everyone! let me try them 🙂
hi @JCK2
try to plot a visual table with a measure of this:
the dataset:
With this I got What I wanted but one thing when I enable the total values the total the value is coming as Max value of both(in this case 95) instead of sum of both ( 96) .
Can you please help me with that.
it can be further simplified like this:
Hi @JCK2 ,
Something like this:
//get max date for 1 project
VAR MaxDate = calculate( max('table'[Modified Date]), allexcept('table, 'table'[project name]))
RETURN
//get target for max date for the project. Instead of max, you can use min as you retrieve only 1 value
//assumpton: you have a relationship between table date & project date
calculate( max('table'[Target]), datetable[date] = MaxDate)
_TargetMaxDate =
VAR __filer = MAX('Table'[Modified Date])
VAR __target = CALCULATE(SELECTEDVALUE('Table'[Target]), 'Table'[Modified Date] = __filer)
RETURN
__target
Hello @JCK2 ,
If you only want the target create this measure to give you the last value of target:
If you also want the latest date associated create an other measure like this
Hope it helps you
This (the Related Target calc) looks very promising, but when I try it I get the error "The expression refers to multiple columns. Multiple columns cannot be converted to a scalar value."
Its confusing becasue the condition in my case definitely can only be satisfied by a single Date, and hence a single related value. I tried dividing it and first retreieving the latest data using LASTDATE, and then using that date to get the value, and it seemed to work.
User | Count |
---|---|
14 | |
12 | |
7 | |
6 | |
5 |
User | Count |
---|---|
28 | |
19 | |
13 | |
7 | |
5 |