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 486
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