Identify new listing by color

Hi all. I have a database that is populated by a zap from zapier. I would like to know how I can identify new entries with a different color, or another setting using the back end with a formula??? CAn anyone please helpme? Edward Blue Mountains Australia.

0 4 171
4 REPLIES 4

I think you can create format rule with newest timestamp or counting from the 1st row to bottom of database, which one is MAXROW() <=> newest entry, MAXROW()-1 <=> last entry added before newestโ€ฆ, then you set the format rule for identify new entries.

I didnโ€™t try to build the formula but I think this would works

Hi Trung,
I am really out of my depth here. I was wondering if at all you do a step
by step walk-thru with some screen shots, as I am 60yrs old and visual?

Regards,

Edward

This information contained in this message and any attachments(s) may be
privileged and confidential and is intended for the exclusive use of the
addressee designated. If you are not the addressee any disclosure,
reproduction, distribution, on-transmission, dissemination or use of the
communication is strictly prohibited. If you receive this message in error
please notify us immediately by return mail and delete the message (and any
attachments). Whilst any attachments may have been checked for viruses,
you should rely on your own virus checking programmes and procedures. To
facilitate our communications we may store your email and address.

Hi EBMA,

I need you to help me defind your โ€œnew entriesโ€. Itโ€™s depend on timestamp or just lastest added entry in your table?

I need something to be a checkpoint and set the true false status or some other status like my own table (especialy last virtual column: define_new_entries)

This is my formula for lastest entries of the table

IF(
	(
		COUNT(
			SELECT(
				ord_revenue[key],
				ISNOTBLANK(
					[key]
				)
			)
		)
		+
		1
	) = [_THISROW].[_RowNumber],
	TRUE,
	FALSE
)

I count data entries inside the table first then compare with the ROWNUMBER of ROW to defind which one is newest data entry (TRUE) or not (FALSE)

Other case that we can do with timestamp rule

if TIMESTAMP of create_date + 30 mins >= NOW() => newest entry => TRUE
if TIMESTAMP of create_date + 30 mins < NOW() => newest entry => FALSE

Steve
Participant V

Define โ€œnew entriesโ€.

See also:

Top Labels in this Space