Skip to main content

Roll up "next action" to a project table

  • March 13, 2018
  • 5 replies
  • 32 views

I have a checkbox field in a table of tasks that designates if the task is the “next action” for a project. Each task is related to a project in a project table. Is there anyway for me to roll up the Name of the Task(s) marked as Next Action for a particular project? All I can seem to do is roll up the value of the checkbox and not the Name of the actual task.

This topic has been closed for replies.

5 replies

Alex_Wolfe
Forum|alt.badge.img+19
  • Inspiring
  • March 13, 2018

You could make a separate formula that looks for the ‘check’ in the ‘next action’ column, then outputs the task name.

For example the new field/column formula could look like this:

IF({next action}=1,{Name of Task},blank())

A checked box = 1, unchecked = 0, so if the box is checked it will populate the Name of Task - otherwise it is blank.

Then you could lookup/rollup the task name. I’m not sure how the rest of your base is laid out so this is just a first impression suggestion.


  • Author
  • New Participant
  • March 13, 2018

You could make a separate formula that looks for the ‘check’ in the ‘next action’ column, then outputs the task name.

For example the new field/column formula could look like this:

IF({next action}=1,{Name of Task},blank())

A checked box = 1, unchecked = 0, so if the box is checked it will populate the Name of Task - otherwise it is blank.

Then you could lookup/rollup the task name. I’m not sure how the rest of your base is laid out so this is just a first impression suggestion.


Oh, very nice. I’m going to try that right now!


  • Author
  • New Participant
  • March 13, 2018

You could make a separate formula that looks for the ‘check’ in the ‘next action’ column, then outputs the task name.

For example the new field/column formula could look like this:

IF({next action}=1,{Name of Task},blank())

A checked box = 1, unchecked = 0, so if the box is checked it will populate the Name of Task - otherwise it is blank.

Then you could lookup/rollup the task name. I’m not sure how the rest of your base is laid out so this is just a first impression suggestion.


Worked like a charm. I used this on the Tasks table:

IF({Next Step}=1,Name,BLANK())

and then this in the projects table:

ARRAYCOMPACT(values)

Thanks so much!


Alex_Wolfe
Forum|alt.badge.img+19
  • Inspiring
  • March 13, 2018

Worked like a charm. I used this on the Tasks table:

IF({Next Step}=1,Name,BLANK())

and then this in the projects table:

ARRAYCOMPACT(values)

Thanks so much!


No problem :slightly_smiling_face:


Forum|alt.badge.img+10
  • Known Participant
  • March 20, 2018

No problem :slightly_smiling_face:


Hi
i have a similar next action setup, i tend to drag tasks up and down as i plan and would like the top or first task under each project to be automatically triggered as the next action for that project.

R