I made an app to track volunteer sign-in and ...

I made an app to track volunteer sign-in and sign-out. I am trying to add an option of viewing volunteers who are currently โ€œsigned inโ€. Essentially I want to view a slice of just todayโ€™s information. Preferably only the volunteers that are still volunteering. I am looking for the expression that I would need to make that happen?

0 10 402
10 REPLIES 10

You could try something like AND([Date]=TODAY(),[Status]=โ€œSigned inโ€)

@Aleksi_Alkio I was trying variations of that and i couldnโ€™t shake the data from previous days. Iโ€™ve since been working on making a separate google sheet with the formulas I need to glean what i need from the data in my original sheet.

You donโ€™t need to create another sheet. You can do that with the slice. Would you please show what have you tried so we could have an idea what are you looking for.

@Aleksi_Alkio [Date]=TODAY

[Time Out]=TIMENOW

AND([Date]=TODAY(), [Status]=โ€œSigned inโ€)

AND([Date]=TODAY()

among a few others.

Do you have these columns in a same table? And you have both Date and Time Out columns as well?

Yeah here is what i have as columns

Here also is an image of the sheet.

How aboutโ€ฆ AND([Date]=TODAY(),TIMENOW()>[Time In],ISBLANK([Time Out]))

It still pulls all of the data.

Actually. itโ€™s not doing that. If you would create a table view for that slice, you would see that all โ€œNโ€ records wonโ€™t show up.

Top Labels in this Space