Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Earn a 50% discount on the DP-600 certification exam by completing the Fabric 30 Days to Learn It challenge.

Reply
bignadad
Helper I
Helper I

Manually added row to dimension table that needs to filter many conditions in value table

I have a table called glAccount

bignadad_0-1708283247189.png

 

It has a relationship with glEntry

bignadad_1-1708283320318.png

The point of this is to display the 3 level heiarchy in my matrix table

bignadad_2-1708283377144.png

AccountGroup, AccountSubGroup, AccountNoName

This works fine.

 

The problem is I have a few custom rows I need to add.

One example is NP (Net Profit)

To get it in the dimension table i added a custom table and manually entered the data then appended with the glAccount table.

bignadad_3-1708283523077.png

bignadad_4-1708283551049.png

All the values are from the glEntry tables. I don't use the values in this glAccount table. 

 

How this NP is calculated is by filtering glAccountNo.

Here is a custom column I added to glEntry as I was testing.

isNP = IF(
    and(glentry[gLAccountNo] >= 4010,glentry[gLAccountNo] <= 4200) || 
    and(glentry[gLAccountNo] >= 4410,glentry[gLAccountNo] <= 4600) ||
    glentry[gLAccountNo] = 4900 || 
    and(glentry[gLAccountNo] >= 5000,glentry[gLAccountNo] <= 5090) || 
    and(glentry[gLAccountNo] >= 6010,glentry[gLAccountNo] <= 6320) || 
    and(glentry[gLAccountNo] >= 6420,glentry[gLAccountNo] <= 6499) || 
    and(glentry[gLAccountNo] >= 6510,glentry[gLAccountNo] <= 6599) || 
    and(glentry[gLAccountNo] >= 7000,glentry[gLAccountNo] <= 8150) || 
    and(glentry[gLAccountNo] >= 8200,glentry[gLAccountNo] <= 8285) || 
    and(glentry[gLAccountNo] >= 8400,glentry[gLAccountNo] <= 8491) || 
    and(glentry[gLAccountNo] >= 8600,glentry[gLAccountNo] <= 8680) ||
    glentry[gLAccountNo] = 8700 || 
    and(glentry[gLAccountNo] >= 8800,glentry[gLAccountNo] <= 8950) || 
    and(glentry[gLAccountNo] >= 8990,glentry[gLAccountNo] <= 8991) || 
    and(glentry[gLAccountNo] >= 9997,glentry[gLAccountNo] <= 9998),
    glentry[amount],0)

 

Of course this won't add it to my table matrix. 

 

The value is in glAccount but I can't figure out how to relate it to the values table so it will show up on my report

bignadad_5-1708283960011.png

If this isn't possible how else can I do this.

It seems like it should be simple. I just need to relationship from the NP glAccount to match many glAccountNo's

1 ACCEPTED SOLUTION

Sorry. That should have been just ALL(gltable).  Please see attached sample.

danextian_0-1708325057003.png

 

 










Did I answer your question? Mark my post as a solution!


Proud to be a Super User!









"Tell me and I’ll forget; show me and I may remember; involve me and I’ll understand."
Need Power BI consultation, get in touch with me on LinkedIn or hire me on UpWork.
Learn with me on YouTube @DAXJutsu or follow my page on Facebook @DAXJutsuPBI.

View solution in original post

3 REPLIES 3
danextian
Super User
Super User

Hi @bignadad 

This is always one of the challenges when replicating financial statements in Power BI. It is either our pet peeve to make it follow the FS format or it is the stakeholder who thinks that Power BI can work like Excel. And yes, appending an extra row to the accounts table is one of the steps (or doing it in DAX, depending on the use case). But why use such a long formula for NP which is usually just Sales - COGS - Expenses or the net of Debits and Credits of nominal accounts in a given period.  It should be as simple as this.

=
SWITCH (
    SELECTEDVALUE ( GLAccountTable[Account] ),
    "Net Profit",
        CALCULATE (
            [NP Measure],
            FILTER (
                ALL ( GLAccountTable[Account] ),
                GLAccountTable[Account] = "Net Profit"
            )
        ),
    [PnL Measure]
)

  ALL ( GLAccountTable[Account] ) tells DAX to return the value of NP if the account name is Net Profit.










Did I answer your question? Mark my post as a solution!


Proud to be a Super User!









"Tell me and I’ll forget; show me and I may remember; involve me and I’ll understand."
Need Power BI consultation, get in touch with me on LinkedIn or hire me on UpWork.
Learn with me on YouTube @DAXJutsu or follow my page on Facebook @DAXJutsuPBI.

Are you suggesting to use the measure you provided as the values for the matrix table? 

SWITCH (
    SELECTEDVALUE ( glAccount[no] ),
    "NP",
        CALCULATE (
            [Net Profit],
            FILTER (
                ALL ( glAccount[no] ),
                glAccount[no] = "NP"
            )
        ),
    [Total]
)

I tried this but it didn't work. 

The relationship between glAccount and glEntry is the gl account no. There are not entires in glEntry with that table beacuse its are totals.

Sorry if i missed your answer, but I'm not seeing how this works.

the gl account no in glAccount is NP

bignadad_0-1708309001348.png

 

All the other values are show up with that measure but not NP

Sorry. That should have been just ALL(gltable).  Please see attached sample.

danextian_0-1708325057003.png

 

 










Did I answer your question? Mark my post as a solution!


Proud to be a Super User!









"Tell me and I’ll forget; show me and I may remember; involve me and I’ll understand."
Need Power BI consultation, get in touch with me on LinkedIn or hire me on UpWork.
Learn with me on YouTube @DAXJutsu or follow my page on Facebook @DAXJutsuPBI.

Helpful resources

Announcements
PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.