Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

View all the Fabric Data Days sessions on demand. View schedule

Reply
tusharsinghtanw
Regular Visitor

undefined

rep.PNG

Hi, how can i replicate the above formula in Power BI, i am unable to do so?

please help.

need to get the sum of those names who have delivered in last three months consistenly.

1 REPLY 1
mike775
New Member

@tusharsinghtanw 

 

Although you asked about Power BI, I would highly recommend using the "IFS" function in Excel instead of nested IF statements.  It is both easier/simpler to write, and easier for other people to understand.

 

DAX does not have IFS, instead you can use the SWITCH function.  Something like this:

 

 

COLUMN = 
SWITCH(
	TRUE()

	, table[period] = 201809 
	|| table[period] = 201809 - 1 
	|| table[period] = 201809 - 2
	, "Condition 1"

	, CALCULATE(
		SUM(table[Complete/Sent Approval Sites])
		, FILTER(
			table
			, table[Engineer Name] = EARLIER(table[Engineer Name])
			)
		, FILTER(
			table
			, table[Period] = EARLIER(table[Period])
			)
		)
	> 0
	, "Condition 2"

	, "Everything Else"
	)

 

 

Obviously your formula is much more complicated, so you will have to build this out, but that is the basic structure.

 

More broadly speaking, Power BI is not Excel.  It has different strengths and a different way of approaching things.  This same result can be achieved much easier using a built out data model and the functionality of measures / visuals in Power BI.  

 

 

 

 

 

 

 

Helpful resources

Announcements
November Power BI Update Carousel

Power BI Monthly Update - November 2025

Check out the November 2025 Power BI update to learn about new features.

Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors
Top Kudoed Authors