The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredCompete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.
Hi @jeongkim,
I am asuming your asking about a DAX logic to not count the rows b/w 00:00am to 06:00am. You can try with below logic.
Cancel Count Daytime =
CALCULATE(COUNTROWS('TableName'),
FILTER('TableName', HOUR('TableName'[Cancel Time]) >= 6)
)
Thanks,
If you found this solution helpful, please consider giving it a Like👍 and marking it as Accepted Solution✔. This helps improve visibility for others who may be encountering/facing same questions/issues.
Hi @jeongkim,
I am asuming your asking about a DAX logic to not count the rows b/w 00:00am to 06:00am. You can try with below logic.
Cancel Count Daytime =
CALCULATE(COUNTROWS('TableName'),
FILTER('TableName', HOUR('TableName'[Cancel Time]) >= 6)
)
Thanks,
If you found this solution helpful, please consider giving it a Like👍 and marking it as Accepted Solution✔. This helps improve visibility for others who may be encountering/facing same questions/issues.