Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Learn from the best! Meet the four finalists headed to the FINALS of the Power BI Dataviz World Championships! Register now
Hello everyone ,
I need a help about a lookupvalue dax formula for the same table. I have the columns like the example and need to write the "Previous Visit End Time" whit dax formula.
May i ask your help please. Thank you in adavnce
Solved! Go to Solution.
@berkero
try the following
create a calculate column as follow.:
col =
Var ds =
offset ( -1,
summarize (
tbl_name,
tbl_name[representative id],
tbl_name[visit date] ,
tbl_name[visit queue],
tb_name[visitend time]
) ,
orderby(tbl_name[visit_queue] , asc ) ,
partitionby(tbl_name[representative id] , tbl_name[visit date] )
)
return
selectcolumns(
ds,
"res" , tbl_name[visitend time] )
let me know if this works for you .
if this helped you solving your problem,
make sure to give it a thumbs up and accept it as a solution so others can find it quickly.
Hi,
This calculated column formula works
Column = CALCULATE(MAX(Data[Visit End Time]),FILTER(Data,Data[Representative ID]=EARLIER(Data[Representative ID])&&Data[Visit Date]=EARLIER(Data[Visit Date])&&Data[Visit End Time]<EARLIER(Data[Visit End Time])))
Hope this helps.
Hi,
This calculated column formula works
Column = CALCULATE(MAX(Data[Visit End Time]),FILTER(Data,Data[Representative ID]=EARLIER(Data[Representative ID])&&Data[Visit Date]=EARLIER(Data[Visit Date])&&Data[Visit End Time]<EARLIER(Data[Visit End Time])))
Hope this helps.
thank you so much.. it works..
You are welcome.
@berkero
try the following
create a calculate column as follow.:
col =
Var ds =
offset ( -1,
summarize (
tbl_name,
tbl_name[representative id],
tbl_name[visit date] ,
tbl_name[visit queue],
tb_name[visitend time]
) ,
orderby(tbl_name[visit_queue] , asc ) ,
partitionby(tbl_name[representative id] , tbl_name[visit date] )
)
return
selectcolumns(
ds,
"res" , tbl_name[visitend time] )
let me know if this works for you .
if this helped you solving your problem,
make sure to give it a thumbs up and accept it as a solution so others can find it quickly.
It works.. thank you so much
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
Check out the February 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 53 | |
| 51 | |
| 36 | |
| 15 | |
| 14 |
| User | Count |
|---|---|
| 92 | |
| 75 | |
| 41 | |
| 26 | |
| 25 |