Aug 28, 2023 08:47 AM
Hello friends of the community,
I'm facing a problem when trying to filter the date in the interface. Whenever I select the month it shows me the total, the same happens when I use the specific date filter. Do you know any formula or trick to solve this problem?
Aug 28, 2023 10:20 AM - edited Aug 28, 2023 10:21 AM
Hi @asguth
I am assuming the month and year is a single line text field type? If yes you can use 'contains' instead of 'is'. That could help depending on what field type is it. If for instance it's a linked field that has more than 1 value, it might not work.
As for the date field, you can do the date > is within > this month, it will show all records that are pertaining to this month. Alternatively you can use a date range. The date > is on or after 1/8/2023 and the date > is on or before > 31/8/2023.
Hope this helps!
Aug 28, 2023 12:25 PM
Hello Valentino thanks for your reply!
month and year are a formula: DATETIME_FORMAT({Date},'YYYY') and MMMM
Sorry for the lack of information, I'm trying to make an interface page with two tables, Interactions and employees, my client needs to have all employees filtered in this Employees table interface by data, I'm getting the result I need with counting numbers and graphs in the interactions table , this is the result I need to show in Employees Interface table:
I'm not sure if this is possible in the employees table, my question is if it is possible to make a formula to have the same result as above.
Aug 28, 2023 12:49 PM
Should I work only with Interactions table? to get the result desired?
Aug 28, 2023 04:07 PM
Hi @asguth
If I understand correctly, the first thing you are having issues with the primary field formula in the interactions table? Here is a formula that will fix the primary field assuming it is indeed the Date you want with Type.
DATETIME_FORMAT({Date}, "D/M/YYYY") & " - " & {Type}
As for the second question regarding how to display the data and filter correctly in the interface, there are so many different avenues you can take. Interfaces work great with multiple tables. But you need to decide for each page on the interface what table you want and all the information you can get out of that one table.
If I can make a suggestion, I would use the employees table as the core as it seems all the other tables all point to employees. Then have linked records with lookup or rollup fields that are important pieces of information pertaining to each employee. So in essence, the answer to your last question is yes it's "possible to make a formula to have the same result as above." I would create a lookup field in the employees table (from Interactions) with month and then in the interface your filter will work. Then on the filter in the interface you can say 'When month > Contains > July 2023.
Aug 29, 2023 01:37 PM
Valentino Thank you a lot for your help!
I ended up taking a different path and was able to achieve the desired result. Using the 'employees' data didn't give me the numbers I needed, so I looked at the 'interactions' data instead. I applied an IF(FIND("BUD", Type) > 0, 1, 0) formula and for others {types}. At the bottom of the table, the client can see the sum. It was the only way I could manage to do it. If you have any advice, please feel free to share.
No filter:
Filter applied for July: