Take a past Weeknum

Hi!
I have a Report that I send every week on Monday, adding the information from last week.
I have already resolved the part of the report, but I would like the head of the report to mention the week that is being declared.
The report divides the records by Import week, for this I use the number of weeks per year (Weeknum). How can I make the report add not the current week but the previous one.

Table: Informacion de Salidas
Column: Semana de Cruce

0 2 68
2 REPLIES 2

Steve
Platinum 4
Platinum 4

The <<Start>> tag expects a list of key column values from the rows you want displayed. LOOKUP() produces a single value, not a list, so LOOKUP() isnโ€™t giving <<Start>> what <Start>> wants.

<<Start>> is used to display data from a list of rows, but you really want to display just one value at that point: the week number. In fact, you donโ€™t need <<Start>> (and the matching <<End>>) at all.

Replace this:

<<START LOOKUP(...)>><<[Semana de Cruce]>><<End>>

with just:

<<LOOKUP(...)>>

awesome Steve! Thank you very much.
Your explanation is clear to me, this will be very helpful for my next projects.

the formula was like this
3X_0_8_08a68510efa8d94dd96967df4dff840d0f7f30eb.png

and the final report:

Top Labels in this Space