One of the most common issues hospital IT teams face is version compatibility. Using an outdated designer with a newer version of HOSxP can cause reports to crash or display errors.
This exclusive download section ensures you have the tool compatible with the widely used versions of HOSxP.
Food & Culinary Heritage
Home & Everyday Living
Fashion & Textiles
Arts, Crafts & Entertainment
Modern Indian Mindset
If your hospital uses HOSxP, report generation is typically done by an IT or HIM staff member who:
Important: You must have a legitimate HOSxP installation from your hospital’s IT department or the official MOPH (Thai Ministry of Public Health) distribution.
Goal: Build a "Monthly Outpatient Revenue by Doctor" report. report designer hosxp download exclusive
In the Data Explorer panel, right-click "Data Sources" > Add Query. Enter:
SELECT
diag.icd10_code,
diag.icd10_name,
COUNT(vn.visit_id) AS total_visits,
SUM(bill.amount) AS total_revenue
FROM visit vn
JOIN diagnosis diag ON vn.diag_id = diag.id
JOIN billing bill ON vn.visit_id = bill.visit_id
WHERE vn.visit_date BETWEEN :start_date AND :end_date
GROUP BY diag.icd10_code, diag.icd10_name
ORDER BY total_revenue DESC
LIMIT 10
The :start_date and :end_date will become parameter prompts.
Let’s create a report that is not available in standard HOSxP: "Monthly Top 10 Diagnosis by Revenue." One of the most common issues hospital IT