Hello , Below is a calcualted field from Tableau: -
(
(IF [End of Month] >= MAX([Campaign End Date])
THEN MAX([Campaign End Date])
ELSE[End of Month]
END)
-
MIN([Campaign Start Date])
)
/
(MAX([Campaign End Date])-MIN([Campaign Start Date]))
Is there any way i can create the same logic in Power BI ?
Solved! Go to Solution.
Hi @UditJ ,
Try formula like below:
Time Pacing =
DIVIDE (
IF ( [EOM] >= MAX ( [Campaign End Date] ), MAX ( [Campaign End Date] ), [EOM] ),
MIN ( [Campaign Start Date] ),
INT ( MAX ( [Campaign End Date] ) - MIN ( [Campaign Start Date] ) )
)
If the problem is still not resolved, please provide detailed error information and test data. Looking forward to your reply.
Best Regards,
Henry
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @UditJ ,
Try formula like below:
Time Pacing =
DIVIDE (
IF ( [EOM] >= MAX ( [Campaign End Date] ), MAX ( [Campaign End Date] ), [EOM] ),
MIN ( [Campaign Start Date] ),
INT ( MAX ( [Campaign End Date] ) - MIN ( [Campaign Start Date] ) )
)
If the problem is still not resolved, please provide detailed error information and test data. Looking forward to your reply.
Best Regards,
Henry
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
@UditJ , end of month also need to be a measure in case of meausre
Divide(
IF( [End of Month] >= MAX([Campaign End Date])
, MAX([Campaign End Date])
,[End of Month]
END)
-
MIN([Campaign Start Date])
,
int(MAX([Campaign End Date])-MIN([Campaign Start Date])) )
end of month can be
eomonth(today(), 0)
or
eomonth(MAX([Campaign End Date]),0)
Hello AMit , I am gettng synatx issue. Please find the below image: -
Dont know whats going wrong here. Any suggestions ?
Power BI release plans for 2023 release wave 1 describes all new features releasing from April 2023 through September 2023.
Make sure you register today for the Power BI Summit 2023. Don't miss all of the great sessions and speakers!
Join the biggest FREE Business Applications Event in LATAM this February.
User | Count |
---|---|
225 | |
46 | |
45 | |
44 | |
42 |
User | Count |
---|---|
290 | |
211 | |
82 | |
75 | |
63 |