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

Earn the coveted Fabric Analytics Engineer certification. 100% off your exam for a limited time only!

Reply
mh2587
Super User
Super User

Ref# Count on the bases of date difference When date difference is greater 2

with refrence column it shows correct format and calculation of days of ops but when i remove the reference column it grouped the data which i don't want 

Days of OPS =
var DOPS = DATEDIFF('CRM Log'[Initiation Date],'CRM Log'[OPS Action Date],DAY)
 
return IF(DOPS > 2 , COUNT('CRM Log'[Reference #]),BLANK())
Jst days.PNGwith Ref.PNG


Muhammad Hasnain

#LetsConnect https://www.linkedin.com/in/hasnain2587/
1 ACCEPTED SOLUTION
v-zhangti
Community Support
Community Support

Hi, @mh2587 

 

Measure:

Days of OPS M =
VAR DOPS =
    DATEDIFF (
        SELECTEDVALUE ( 'CRM Log'[Initiation Date] ),
        SELECTEDVALUE ( 'CRM Log'[OPS Actuon Date] ),
        DAY
    )
VAR _Count =
    CALCULATE (
        COUNT ( 'CRM Log'[Reference#] ),
        FILTER ( ALL ( 'CRM Log' ), [Reference#] = MAX ( 'CRM Log'[Reference#] ) )
    )
RETURN
    IF ( DOPS > 2, _Count, BLANK () )

vzhangti_0-1642067509963.png

In Table view, if there are no unique values, the same values will be merged. If you want to output this screenshot below directly, it is not possible without any reference column.

vzhangti_1-1642067811608.png

 

Best Regards,

Community Support Team _Charlotte

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

View solution in original post

6 REPLIES 6
v-zhangti
Community Support
Community Support

Hi, @mh2587 

 

Measure:

Days of OPS M =
VAR DOPS =
    DATEDIFF (
        SELECTEDVALUE ( 'CRM Log'[Initiation Date] ),
        SELECTEDVALUE ( 'CRM Log'[OPS Actuon Date] ),
        DAY
    )
VAR _Count =
    CALCULATE (
        COUNT ( 'CRM Log'[Reference#] ),
        FILTER ( ALL ( 'CRM Log' ), [Reference#] = MAX ( 'CRM Log'[Reference#] ) )
    )
RETURN
    IF ( DOPS > 2, _Count, BLANK () )

vzhangti_0-1642067509963.png

In Table view, if there are no unique values, the same values will be merged. If you want to output this screenshot below directly, it is not possible without any reference column.

vzhangti_1-1642067811608.png

 

Best Regards,

Community Support Team _Charlotte

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

smpa01
Super User
Super User

@mh2587  if you remove Reference# column, what was the output were you hoping for?

Did I answer your question? Mark my post as a solution!
Proud to be a Super User!
My custom visualization projects
Plotting Live Sound: Viz1
Beautiful News:Viz1, Viz2, Viz3
Visual Capitalist: Working Hrs

I want the same output as shown in the second screenshot without reference column



Muhammad Hasnain

#LetsConnect https://www.linkedin.com/in/hasnain2587/

@mh2587  try what @parry2k  is suggesting

Did I answer your question? Mark my post as a solution!
Proud to be a Super User!
My custom visualization projects
Plotting Live Sound: Viz1
Beautiful News:Viz1, Viz2, Viz3
Visual Capitalist: Working Hrs
parry2k
Super User
Super User

@mh2587 try this measure

 

Days of OPS =
SUMX ( 
'CRM Log',
var DOPS = DATEDIFF('CRM Log'[Initiation Date],'CRM Log'[OPS Action Date],DAY)
return IF(DOPS > 2 , COUNT('CRM Log'[Reference #])
)

 

 

Follow us on LinkedIn and YouTube.gif to our YouTube channel

 

Learn about conditional formatting at Microsoft Reactor

My latest blog post The Power of Using Calculation Groups with Inactive Relationships (Part 1) (perytus.com) I would  Kudos if my solution helped. 👉 If you can spend time posting the question, you can also make efforts to give Kudos to whoever helped to solve your problem. It is a token of appreciation!

 

Visit us at https://perytus.com, your one-stop-shop for Power BI-related projects/training/consultancy.



Subscribe to the @PowerBIHowTo YT channel for an upcoming video on List and Record functions in Power Query!!

Learn Power BI and Fabric - subscribe to our YT channel - Click here: @PowerBIHowTo

If my solution proved useful, I'd be delighted to receive Kudos. When you put effort into asking a question, it's equally thoughtful to acknowledge and give Kudos to the individual who helped you solve the problem. It's a small gesture that shows appreciation and encouragement! ❤


Did I answer your question? Mark my post as a solution. Proud to be a Super User! Appreciate your Kudos 🙂
Feel free to email me with any of your BI needs.

Not getting the expected output



Muhammad Hasnain

#LetsConnect https://www.linkedin.com/in/hasnain2587/

Helpful resources

Announcements
April AMA free

Microsoft Fabric AMA Livestream

Join us Tuesday, April 09, 9:00 – 10:00 AM PST for a live, expert-led Q&A session on all things Microsoft Fabric!

March Fabric Community Update

Fabric Community Update - March 2024

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