Skip to main content
Solved

Hiding and unhiding fields in a view based on conditions


Forum|alt.badge.img+3
  • Participating Frequently
  • 6 replies

I have a list of clients that I do work for. I do the same 50 tasks for each client. Each field in my table is another task. The tasks are dropdowns with the status of the task like assigned, in progress, completed, and questions for supervisor.

My supurvisor wants to create a view that shows only the questions for her. I did this by filtering the view to only show records (clients) that has the choice ‘questions for supervisor’ in field a, b, c d, etc. all the way through. This works well.

However, I need to unhide all the fields because maybe that field is the one with a question. So, when a question pops up in her view, she has to scroll all the way to the right until she finds the field that has a question. This wastes a lot of time especially because there are a lot of clients and by each client there can be more then one question.

I am looking for a way to only unhide a field that has ‘questions for supervisor’ for at least one record. I don’t mind if then that field will be there for all clients, because it will still limit the view to show significantly less fields because there are never questions for so many tasks at once.

Does anyone have any ideas for me?

Best answer by mtrebinonixon

Hi there!

As you have the Base structure now, I would suggest to create a new formula field where you list out (comma-separated list) all the columns that are currently set at “questions for supervisor”. And you can place this at the top of the Customer’s record detail, so your supervisor can know immediatelly which Tasks to analyze. You can name it: “Tasks for Supervisor to Review”

 

This Project Management / Tasks use case is very common in Airtable, I have developed it multiple times and going forward you could think about having the Tasks as a separate Table, each linked to its Client. This would make the Base much more scalable, allowing you to add information to each task (Notes, Assignee, Notification, Start and End Date, etc).
 

If you’d like some Airtable guidance we can do a quick get-together. Feel free to schedule one here: https://calendar.app.google/BDT6pyk35Xk1F9jB8. Happy to help.


Best regards,

Matt Nixon

View original
Did this topic help you find an answer to your question?

4 replies

mtrebinonixon

Hi there!

As you have the Base structure now, I would suggest to create a new formula field where you list out (comma-separated list) all the columns that are currently set at “questions for supervisor”. And you can place this at the top of the Customer’s record detail, so your supervisor can know immediatelly which Tasks to analyze. You can name it: “Tasks for Supervisor to Review”

 

This Project Management / Tasks use case is very common in Airtable, I have developed it multiple times and going forward you could think about having the Tasks as a separate Table, each linked to its Client. This would make the Base much more scalable, allowing you to add information to each task (Notes, Assignee, Notification, Start and End Date, etc).
 

If you’d like some Airtable guidance we can do a quick get-together. Feel free to schedule one here: https://calendar.app.google/BDT6pyk35Xk1F9jB8. Happy to help.


Best regards,

Matt Nixon


Forum|alt.badge.img+3
  • Author
  • Participating Frequently
  • 6 replies
  • March 25, 2025

Thanks for your reply.

Can you halp me with the formula? Right now I have IF({Task A}=”Questions for supervisor”, “A”, IF({Task B}=”Questions for supervisor”, “B”)) etc. but if a client has more than one question, it will only show the first one. For example, if there are questions for a client in tasks B, F and G it will only show B.

Do you know how I can make the formula show all the fields that have questions?


mtrebinonixon

You can do it like this:

CONCATENATE(
  IF({Task A}="Questions for supervisor", "A"),
  IF({Task B}="Questions for supervisor", ", B"),
  IF({Task C}="Questions for supervisor", ", C")
)

This can leave a comma at the start of the formula, if for example B is “Questions for supervisor” but not A. This can be removed using a Regex formula, but did not include it here so the formula is clear.


ScottWorld
Forum|alt.badge.img+33
  • Brainy
  • 8779 replies
  • March 25, 2025

Note that if you upgrade to Airtable’s Business Plan, you can gain conditional visibility on any record detail screen in interfaces.

- ScottWorld, Expert Airtable Consultant


Reply