Get Inspire insights from former attendees in our AMA discussion thread on Inspire Buzz. ACEs and other community members are on call all week to answer!

Alteryx Designer Desktop Discussions

Find answers, ask questions, and share expertise about Alteryx Designer Desktop and Intelligence Suite.
SOLVED

Ensure all Entities have the same GL Accounts and working around GL accounts with Letters

davidlocke
7 - Meteor

I have a 2 part question.  First is when we pull the trial balance from our ERP system it pulls only accounts with balances, but for various calculations that will be done outside of alteryx, I need each entity to have the same GL accounts.  Below is a quick example.

TBs from ERP:

EntityA/CDescAmt
1000610111Small F&F <$1,000100
1000610130Badging Expenses100
1000610200Sm Equip $1,000-$5,0100
1000610201Small Equip <$1,000100
1000610250Security Equipment100
1000610300Print/Repro/Copy Cst100
1000610400Forms100
1000610500Safety Supplies100
1000610600Research Material100
1000610700Samples100
1000T00101162m Tax Account - Salaries & Wages100
1000T00102162m Tax Account - Stock Option Expense (NQ)100
1000T00103162m Tax Account - Other Equity Based Comp (RSU, PSU)100
1000T00104GILTI Inclusion100
1000T00501162m Tax Account - COGS Salaries & Wages100
1000T00502162m Tax Account - COGS Stock Option Expense (NQ)100
1000T00503162m Tax Account - COGS Other Equity Based Comp (RSU, PSU)100
1000T00701162m Tax Account - R&D Salaries & Wages100
1000T00702162m Tax Account - R&D Stock Option Expense (NQ)100
1000T00703162m Tax Account - R&D Other Equity Based Comp (RSU, PSU)100
1000999500WIP Offset100
1100610111Small F&F <$1,000100
1100610130Badging Expenses100
1100610200Sm Equip $1,000-$5,0100
1100610201Small Equip <$1,000100
1100610250Security Equipment100
1100610300Print/Repro/Copy Cst100
1100610400Forms100
1100610500Safety Supplies100
1100610600Research Material100
1100610700Samples100
1100T00101162m Tax Account - Salaries & Wages100
1100T00102162m Tax Account - Stock Option Expense (NQ)100
1100T00103162m Tax Account - Other Equity Based Comp (RSU, PSU)100
1100T00104GILTI Inclusion100
1100T00501162m Tax Account - COGS Salaries & Wages100
1100T00502162m Tax Account - COGS Stock Option Expense (NQ)100
1100T00503162m Tax Account - COGS Other Equity Based Comp (RSU, PSU)100
1100T00701162m Tax Account - R&D Salaries & Wages100
1100T00702162m Tax Account - R&D Stock Option Expense (NQ)100
1100T00703162m Tax Account - R&D Other Equity Based Comp (RSU, PSU)100

 

Company 1100 does not have the 999500 account.  I'm trying to come up with a way that to find when an entity doesn't have an account and add it with a 0.00 balance. We have about 8 entities and about 1200 GL accounts that I would need to search all and ensure each entity has the same number of rows (all GLs).

 

My second question is how I can easily update the treat the tax accounts (accounts beginning with "T" above) as a number for formula purposes (I'm assuming some kind of Left operator to replace the T with a zero to do whatever I need to do.  What I'm not certain of is how to get the T back on without messing up any of the other GL accounts.

4 REPLIES 4
Jonathan-Sherman
15 - Aurora
15 - Aurora

Hi @davidlocke,

 

Question 1: You could join against a lookup table (created from the original dataset) I'll look at the second part now...

 

image.png

 

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

Jonathan-Sherman
15 - Aurora
15 - Aurora

Hi @davidlocke,

 

Could you give an example of what you're trying to do with the second part?

 

Regards,
Jonathan

davidlocke
7 - Meteor

The example is in the same dataset above.  The basic gist is there are times when I'm doing formulas where I need the GL account to be a double.  For instance:

 

IF [G/L AC] In (505000, 599999, 550100, 822222) Or [G/L AC]>899999 Or Isnull([G/L AC]) THEN 0

ELSEIF [G/L AC]>=599999 AND [G/L AC] <= 822221 THEN -[Difference]

ELSEIF [G/L AC]>=822223 AND [G/L AC] <= 899219 THEN -[Difference]

ELSEIF [G/L AC]>=899221 AND [G/L AC] <= 899998 THEN -[Difference]

ELSE [Difference]

ENDIF

 

These accounts beginning with T will never be directly involved, but are included in the data.  I guess I could filter them out and then join them back in?

Jonathan-Sherman
15 - Aurora
15 - Aurora

I see what you mean now @davidlocke, i would filter out the "T transactions first, use your formula and union back together.

 

You could use: !StartsWith([A/C], 'T') as your formula in a custom filter

 

image.png

 

If this solves your issue please mark the answers as correct, if not let me know!


Regards,

Jonathan

Labels