Is there anyway where we can duplicate the numbers for n rows in a column in alteryx ?
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Mute
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
Hi All,
Is there anyway we can duplicate the numbers for n rows in a column in alteryx? Below is the screenshot output am expecting.
Br,
Anil
Solved! Go to Solution.
- Labels:
- Common Use Cases
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
The multi-row formula tool should work, create a new field with a formula like: If isempty([Field]) then [Row-1:YourNewField] else [Field] endif
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
Hi @AIPH123,
You'll want to use the multi-row formula here:
If this solves your issue please mark the answer as correct, if not let me know! I've attached my workflow for you to download if needed.
Regards,
Jonathan
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
Hi Patrick,
Thank you for your response.
I have used the below formulae in Formulae tool. But the problem here is the new column " Derived planned calls" is not detecting as a field in the formulae tool
If isempty([Sum_# of Planned Calls]) then [Row-1:Derived Planned Calls] else [Sum_# of Planned Calls] endif
Br,
Anil
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
Thank you Jonathan and Patrick.
It worked
Br,
Anil
