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

Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. Get started

Reply
kkoc3karan
Frequent Visitor

Need Help with this DAX calculation

Data

 

CRM ID

CRM Close DateTask IDTask Close Date
112/07/20231.114/07/2023
112/07/20231.215/07/2023
112/07/20231.316/07/2023
2 2.117/07/2023
2 2.218/07/2023
2 2.3 
3 3.118/07/2023
3 3.219/07/2023

 

Need to Calcuate # Open CRM with no Open tasks 

 

In above eg CRM id 3 is the result as its open and all tasks have close date therefore my Measure should return 1 

 

My currect calc is as follows 

# OpenCRM with no open tasks =
Calculate(
DISTINCTCOUNT(Fct_Crm[CRM_ID]),
not(isblank(Fct_Crm[Task Close Date]),
ISBLANK(Fct_Crm[CRM_det_dte])
))

 

Doest give me correct answer

 

Any help will be appreciated 

 

1 ACCEPTED SOLUTION
kkoc3karan
Frequent Visitor

I have figured out however i am unsure if this is the most optimal way 

happy for someone to suggest better way 

countx(
    filter(
        summarize(
                test,
                test[CRM ID],
                test[CRM Close Date],
                "_1",
                countrows(
                            filter(
                                    test,
                                    not isblank(test[Task Close Date])
                            )
                ),
                "_2",
                countrows(test)
        ),
        isblank(test[CRM Close Date]) && [_1]=[_2]
    ),
    test[CRM ID]
)

View solution in original post

3 REPLIES 3
kkoc3karan
Frequent Visitor

I have figured out however i am unsure if this is the most optimal way 

happy for someone to suggest better way 

countx(
    filter(
        summarize(
                test,
                test[CRM ID],
                test[CRM Close Date],
                "_1",
                countrows(
                            filter(
                                    test,
                                    not isblank(test[Task Close Date])
                            )
                ),
                "_2",
                countrows(test)
        ),
        isblank(test[CRM Close Date]) && [_1]=[_2]
    ),
    test[CRM ID]
)
Ritaf1983
Super User
Super User

Hi @kkoc3karan 
if I understand you correctly please update your dax to :

counter = CALCULATE(
    DISTINCTCOUNT('Table'[Task ID]),
    NOT(ISBLANK('Table'[CRM Close Date])),
    NOT(ISBLANK('Table'[Close Date]))
)
Ritaf1983_0-1689130259928.png

If this post helps, then please consider Accepting it as the solution to help the other members find it more quickly

 

Regards,
Rita Fainshtein | Microsoft MVP
https://www.linkedin.com/in/rita-fainshtein/
Blog : https://www.madeiradata.com/profile/ritaf/profile

Hi @Ritaf1983 

 

Thanks for responding this doesnt give me the correct result .

 

If i add another record to the dataset it still gives me 1 . It should give me 2 as there are 2 CRMs open(close date null) where all tasks are closed ( close date populated) 

 

CRM IDCRM Close DateTask IdTask Close Date

1Wednesday, 12 July 20231.1Friday, 14 July 2023
1Wednesday, 12 July 20231.2Saturday, 15 July 2023
1Wednesday, 12 July 20231.3Sunday, 16 July 2023
2 2.1Monday, 17 July 2023
2 2.2Tuesday, 18 July 2023
2 2.3 
3 3.1Tuesday, 18 July 2023
3 3.2Wednesday, 19 July 2023
4 4.1Monday, 17 July 2023
4 4.2Tuesday, 18 July 2023

 

 

 

Helpful resources

Announcements
Sept PBI Carousel

Power BI Monthly Update - September 2024

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

September Hackathon Carousel

Microsoft Fabric & AI Learning Hackathon

Learn from experts, get hands-on experience, and win awesome prizes.

Sept NL Carousel

Fabric Community Update - September 2024

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