Problems with the Task Report Tutorial

I've been doing the Appian Task Report Tutorial for a while today and I just wanted to report a mistake in it. In the Format the Status Column tab it gives the following code:

a!forEach(
items: local!columnData,
expression: if(
local!configuredFormatting = "TASK_STATUS",
...
...

However since local!configuredFormatting hasn't been defined I think this should be:

with(
local!configuredFormatting: fv!item.configuredFormatting,
a!forEach(
items: local!columnData,
...
...

I'm also a little confused that it seems to have cut off preemptively when defining the filter without showing the code. I haven't been able to find a way to do this without assuming the column layout of the report analytic results, this is even called out in the tutorial previously when it mentions how hard coding is bad. What is the correct way to do this?

  Discussion posts and replies are publicly visible