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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
Bharathi_99
Helper IV
Helper IV

Qlik to PBI logic help

Hello guys,

Please help me in converting qlik logic to pbi

count
(
DISTINCT
{
<
[Imt Date]={">=$(=QuarterStart(max([Im Date]))) <=$(=date(max( [Imt Date])))"},
FyQtr=,
Quarter=,
Year=,
[Type]={"Northern"},
[Category]={'INELIGIBLE'},
[E Number]=E({<[Parts Flag]={'Y'},FyQtr=,Quarter=,Year=>}[E Number])

>
}

[E Number])


In PBI i Have  two tables, FACT and ACE
In fact table Type, category columns are ther and all other are in ace table
I have given relationship between these tables using key column

Please help
Thanks!

3 REPLIES 3
v-shex-msft
Community Support
Community Support

Hi @Bharathi_99 ,

Can you please share a pbix or some dummy data that keep the raw data structure with expected results? It should help us clarify your scenario and test to coding formula.

How to Get Your Question Answered Quickly  

Regards,

Xiaoxin Sheng

Community Support Team _ Xiaoxin
If this post helps, please consider accept as solution to help other members find it more quickly.

I have many records like 770k , I cannot send some sample from there

HI @Bharathi_99,

Perhap you can try to use the following measure formula if this suitable for your scenario:

formula =
VAR currDate =
    MAX ( Calendar[Date] )
VAR quarterStart =
    DATE ( YEAR ( currDate ), QUARTER ( currDate ) * 3, 1 )
RETURN
    CALCULATE (
        DISTINCTCOUNT ( Fact[E Number] ),
        FILTER (
            ALLSELECTED ( Fact ),
            AND ( [Imt Date] >= quarterStart, [Imt Date] <= currDate )
                && [Type] = "Northern"
                && [Category] = "INELIGIBLE"
                && [Parts Flag] = "Y"
        )
    )

Regards,

Xiaoxin Sheng

Community Support Team _ Xiaoxin
If this post helps, please consider accept as solution to help other members find it more quickly.

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

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

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.