Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
Hi,
I am new to Dax, have a formula but don't know how to minimize it-
Current Month Average =
IF (
'Table'[Tracking Parameters] = "PO Receipt to SO Creation",
AVERAGE(Sheet1[PO Receipt to SO Creation]
),
IF('Table'[Tracking Parameters] = "SO Creation to SO Release",
AVERAGE(Raw[SO Creation to SO Release]
),
IF('Table'[Tracking Parameters] = "SO Release to SO Planning",
AVERAGE('TAT Report'[SO Release to SO Planning]
),
IF('Table'[Tracking Parameters] = "Planning to Vehicle Reporting",
AVERAGE('TAT Report'[Planning to Vehicle Reporting]),
IF('Table'[Tracking Parameters] = "Vehicle Reporting to Vehicle GateIn",
AVERAGE('TAT Report'[Vehicle Reporting to Vehicle Gate In]),
IF( 'Table'[Tracking Parameters] = "Vehicle Gate In to Vehicle Gate Out",
AVERAGE('TAT Report'[Vehicle Gate In to Gate Out]),
IF( 'Table'[Tracking Parameters] = "Dispatch To Delivery",
AVERAGE('TAT Report'[TAT 9 Transit Time (Dispatch to Delivery)(Hours)]),
0)
)
)
)
)
)
Solved! Go to Solution.
Hi,
Please try something like below whether it suits your requirement.
Current Month Average =
SWITCH (
'Table'[Tracking Parameters],
"PO Receipt to SO Creation", AVERAGE ( Sheet1[PO Receipt to SO Creation] ),
"SO Creation to SO Release", AVERAGE ( Raw[SO Creation to SO Release] ),
"SO Release to SO Planning", AVERAGE ( 'TAT Report'[SO Release to SO Planning] ),
"Planning to Vehicle Reporting", AVERAGE ( 'TAT Report'[Planning to Vehicle Reporting] ),
"Vehicle Reporting to Vehicle GateIn", AVERAGE ( 'TAT Report'[Vehicle Reporting to Vehicle Gate In] ),
"Vehicle Gate In to Vehicle Gate Out", AVERAGE ( 'TAT Report'[Vehicle Gate In to Gate Out] ),
"Dispatch To Delivery", AVERAGE ( 'TAT Report'[TAT 9 Transit Time (Dispatch to Delivery)(Hours)] ),
0
)
Hi,
Please try something like below whether it suits your requirement.
Current Month Average =
SWITCH (
'Table'[Tracking Parameters],
"PO Receipt to SO Creation", AVERAGE ( Sheet1[PO Receipt to SO Creation] ),
"SO Creation to SO Release", AVERAGE ( Raw[SO Creation to SO Release] ),
"SO Release to SO Planning", AVERAGE ( 'TAT Report'[SO Release to SO Planning] ),
"Planning to Vehicle Reporting", AVERAGE ( 'TAT Report'[Planning to Vehicle Reporting] ),
"Vehicle Reporting to Vehicle GateIn", AVERAGE ( 'TAT Report'[Vehicle Reporting to Vehicle Gate In] ),
"Vehicle Gate In to Vehicle Gate Out", AVERAGE ( 'TAT Report'[Vehicle Gate In to Gate Out] ),
"Dispatch To Delivery", AVERAGE ( 'TAT Report'[TAT 9 Transit Time (Dispatch to Delivery)(Hours)] ),
0
)
Check out the November 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
| User | Count |
|---|---|
| 6 | |
| 5 | |
| 4 | |
| 4 | |
| 4 |
| User | Count |
|---|---|
| 24 | |
| 21 | |
| 12 | |
| 10 | |
| 8 |