Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more
Hi,
i have the columns in table following
Engagement start time MIns(Duration ) Department
10.00 20 Sales
11.00 15 Marketing
12.10 60 Sales
want to show in a chart at which time call happened on daily basis(today)
or else time taken from engagement start time to end time to progress the call of each department.
Solved! Go to Solution.
Hi yuvarajg,
From your description, I create sample data to reproduce your scenario. Firstly, create column "Engagement end time" to get end time, and create table"TimeKey" to display 24 hours daily for further measure analysis.
Engagement end time = 'Table'[Engagement start time]+TIME(0,'Table'[Mins(Duration)],0)
Secondly, create measure "Call_Num" to count call using DAX function below.
Call_Num = CALCULATE(COUNT('Table'[Department]),FILTER(ALLSELECTED('Table'),'Table'[Engagement start time]<=MAX('TimeKey'[Time])&&'Table'[Engagement end time]>=MIN(('TimeKey'[Time]))))
Finally, choose Clustered column chart visual to show at which time call happened on daily.
Here is my pbix test file link: https://qiuyunus-my.sharepoint.com/:u:/g/personal/pbipro_qiuyunus_onmicrosoft_com/ETqD8p4o2WBMmqB5UZ...
If you have any other issue, please feel free to ask.
Best Regards,
Amy
Hi yuvarajg,
From your description, I create sample data to reproduce your scenario. Firstly, create column "Engagement end time" to get end time, and create table"TimeKey" to display 24 hours daily for further measure analysis.
Engagement end time = 'Table'[Engagement start time]+TIME(0,'Table'[Mins(Duration)],0)
Secondly, create measure "Call_Num" to count call using DAX function below.
Call_Num = CALCULATE(COUNT('Table'[Department]),FILTER(ALLSELECTED('Table'),'Table'[Engagement start time]<=MAX('TimeKey'[Time])&&'Table'[Engagement end time]>=MIN(('TimeKey'[Time]))))
Finally, choose Clustered column chart visual to show at which time call happened on daily.
Here is my pbix test file link: https://qiuyunus-my.sharepoint.com/:u:/g/personal/pbipro_qiuyunus_onmicrosoft_com/ETqD8p4o2WBMmqB5UZ...
If you have any other issue, please feel free to ask.
Best Regards,
Amy
The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now!
| User | Count |
|---|---|
| 46 | |
| 42 | |
| 34 | |
| 31 | |
| 21 |
| User | Count |
|---|---|
| 127 | |
| 125 | |
| 94 | |
| 78 | |
| 65 |