How can i simply delete a data record?

I only want to delete an previously made data record. Is there any way without searching for the id in console?

Most Delete functions all require sime kind of id . otherwise how would it know which one to delete?

it would be easier if you can look into the database, see all records with text and can then select the one you want to delete…

Hi!

Delete record does require an ID, but if you want to delete a record based on a different property you can use a formula like FIND to find the item in the list, and then finally use LOOKUP to get its id. For example:

LOOKUP(FIND(data.list, item.name == "something"), "id")

Just replace the item.name == "something" according to how you want to search the record to delete.