Forum Discussion

huguest's avatar
huguest
Icon for Advocate II rankAdvocate II
8 years ago
Solved

LAX count values where column b = column a

Hello, I have a Table that contains information about Parent and Child records together (ID, Parent_ID, Type, Gender).  I need to add 2 columns that calculate the number of children of each gender f...
  • nickchobotar's avatar
    nickchobotar
    8 years ago

    Got it huguest

     

    Here you go

     

    Boy = 
    IF (
        Table1[Type] = "Parent", 
        CALCULATE (
            COUNT ( Table1[Gender] ),
            Table1[Gender] = "Boy",
            ALLEXCEPT ( Table1, Table1[Parent_ID] )
        )
    )
    
    Girl = 
    IF (
        Table1[Type] = "Parent", 
        CALCULATE (
            COUNT ( Table1[Gender] ),
            Table1[Gender] = "Girl",
            ALLEXCEPT ( Table1, Table1[Parent_ID] )
        )
    )
    )