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!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
Hello,
First let me apologize. I realize my ask is very basic but cannot find the way forward. I am a former Tableau user attempting to convert to Power BI. The total formula/calulation is built into Tableau and im struggling on how to do this in Power BI.
Ive attached a small sample of what data I have. Essentially I would like to calculate the total # of helpdesk calls by using the Ticket ID field. From there I can apply the new (totals) field to various slices of my data to break down the calls by month into different views. For example, # of calls by priority, call source, etc.
Appreciate any help you can provide.
Solved! Go to Solution.
Assuming 'Ticket ID' is a unique the following measure will give you the total number of calls that can then be sliced / filtered as needed.
Total_calls=
COUNTROWS('Table')
Thank you!! Now its time to watch the tutorials 🙂
Assuming 'Ticket ID' is a unique the following measure will give you the total number of calls that can then be sliced / filtered as needed.
Total_calls=
COUNTROWS('Table')