Autofill cells
Options
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Mute
- Printer Friendly Page
JACKIEC1992
7 - Meteor
‎07-09-2022
12:21 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
I am trying to autofill the null cells with the wording below. What is the best way to do this?
Labels:
- Labels:
- Alteryx Practice
3 REPLIES 3
DavidSkaife
14 - Magnetar
‎07-09-2022
02:48 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
Hi @JACKIEC1992
One simple way of doing it would be using a formula tool to update the fields, and the following formula:
IF IsNull([Subsidiary]) THEN "Soldcore California" ELSE [Subsidiary] ENDIF
Repeat as required for each field :)
Emmanuel_G
13 - Pulsar
‎07-09-2022
04:40 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
Hi @JACKIEC1992 ,
To do this dynamically, you can find a test attached which provide desired output.
Let me know if it works as you want.
Cheers !
21 - Polaris
‎07-09-2022
05:51 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
