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

Combine two fields count non-null values in Straight Tables

Combine two fields and count only non null value. Please refer sample screenshot for better understanding.

Capture.JPG

T1:

LOAD * INLINE [

    AAA, BBB

    1, 567

    2, 568

    2, 569

    3, 570

    3, 571

    4, 572

    5, 573

    , 574

    , 575

];

1 Solution

Accepted Solutions
sunny_talwar

or Count({<AAA = {"*"}>}BBB)

View solution in original post

3 Replies
sunny_talwar

May be just this.... Count(AAA)

sunny_talwar

or Count({<AAA = {"*"}>}BBB)

karan_kn
Creator II
Creator II
Author

Thanks Sunny