Help!! App formula? I hv 2 table "Status" & ...

Help!! App formula?

I hv 2 table “Status” & “Outgoing register”. Table status is uptable & outgoing is addable. Both these table hv same colums Employee & Return time. Outgoing table Employee is reference from Status table Employe.

I want when an specific employee add their outgoing register and fill Return time, the ‘Status’ table ‘Return time’ column

will be automaticall updatd for that specific employee’s ‘return time’

collumn. Keep in mind that the latest return time added by the employee in ‘outgoing registrar’

will b updated in Status table return column.

What will be the app formula for Status table return time column? Urgent, pls!!!

0 17 484
17 REPLIES 17

Use MAXROW with filter for useremail

@Sdfaheemuddin Formula/expression

pls brother!!

@Sdfaheemuddin In which table i will get the result?

Now its showing value in test. But don’t get the result in Status table!!

@Suvrutt_Gurjar

I use this

=MAX(SELECT(Register[

লগ ইন ],[বহিরাগমনের সময় ]=[_THISROW].[বহিরাগমনের সময়]))

লগইন =

Timestamp & followed by the desired column Translate

This formula is for Virtual column. Where are you using this formula?

@Sdfaheemuddin

Ok bro, now i m getting the result.

Its gives me the maxium duration of my desired column where as i want the most recent login duration…

How to fix it?

@Abu_Md_Moniruzjaman

  1. What is the key column of both the tables?

  2. What is the type of column named return time / বহিরাগমনের সময়

  3. Try this if বহিরাগমনের সময় is of type time/datetime and Employee is not key in status table

Max(Select(Outgoing register[বহিরাগমনের সময়], [Employee]=[_ThisRow].[Employee]))

  1. If Employee is key in status column then Max(Select(Outgoing register[বহিরাগমনের সময়], [Employee]=[_ThisRow])) Translate

Great. Thnx… Its working now.

Hi @Abu_Md_Moniruzjaman, The appformulacan look something like below in a virtual column [Return Time] in Status table

=MAX(SELECT(Outgoing Register[DateTimeStamp],[Employee

Column in Outgoing Register Table]=[_THISROW].[Employee Column in Status Table ]))

The expression assumes that the Status table has one row per employee

Outgoing register table references Status table.

@Suvrutt_Gurjar

Bro…

The expression is valid but does not bring any change.

Try this Any(Select(Outgoing register[Return time],[]=MAXROW(“Outgoing register”, “Return time”,[Employee ID]=[_ThisRow].[Employee ID])))

@Suvrutt_Gurjar

I use this formula

=MAX(SELECT(Register[

লগ ইন ],[বহিরাগমনের সময় ]=[_THISROW].[বহিরাগমনের সময়]))

Here, Register is table name followed by timestamp column,

followed by the column exchange values each other… Is it ok??

No result…

Translate

@Sdfaheemuddin

Not working bro…

Emploee ID, is the ID column of the employee or specific employee name??

Your reference column or anything which is common in both the tables

In place of enter the name of you key column of Outgoing register

Top Labels in this Space