Hello Dear Alteryx users 😊,
How to put header and footer on the first page of the Alteryx?
There is an option how not to show it on the first page)))
Thanks a lot,Â
Attached the workflowÂ
Hey @Karlygash_M,
If you only want it on the first page you have to do a small workaround.Â
Split your first page from the rest of the datastream and then use the header and footer on one part, and the other don't use a header/footer. Then combine the datastreams via. Union.Â
It should look like this:
Then select a Line Break selector in the render tool.Â
See the attached WF.Â
@FrederikEÂ
I have dynamic pages, for example if i have one page header and footer should on that page
But if i have more than one the footer should on the last page.
By your approach i think it is more in static way
@Karlygash_MÂ
Sorry, didn't fully understand at first.
Similar approach, using recordId, count records appends and filters.Firstly filter to [Count]=1 -> here you can attach your header and footer to the true stream; and a layout to combine vertically into a single snippet
Off the false outcome, filter again to [RecordID]=1 -> here you just attach your header; and a layout to combine vertically into a single snippet
Off the false outcome, filter again to [RecordID]=[Count] -> Attach the footer to the false output; and a layout to combine vertically into a single snippet
You then union (with a set output order):
#1 Layout from T of first filter
#2 Layout from T of second filter
#3 Layout from F of third filter
#4 Layout from T of third filter
This will dynamically attach a header to the first row and a footer to the last
Ollie
Hey @Karlygash_MÂ
sorry, didn't have access to Alteryx yesterday. Here's what I was talking about:
Hope that helps, Ollie