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.
Hi,
I am looking to recreate an existing Crystal Report Formula in DAX as a measure. Please could someone advise. I will be using a YEARMONTH Slicer and a seprate dates table containing the usual year, month etc etc
if DatePart('yyyy',{urvPMContractAnalysisDD_WithPCOEstCost.Mth}) < DatePart('yyyy',{?ThroughMth}) then
if DatePart('yyyy',{urvPMContractAnalysisDD_WithPCOEstCost.ProjMth}) < DatePart('yyyy',{?ThroughMth}) then
{urvPMContractAnalysisDD_WithPCOEstCost.ProjCost}
else
{urvPMContractAnalysisDD_WithPCOEstCost.CurrEstCost}
else
0
Solved! Go to Solution.
@AlexD123 , use correct column and table name
if ( year(urvPMContractAnalysisDD_WithPCOEstCost[Date]) < year([ThroughMth]) ,
if ( month(urvPMContractAnalysisDD_WithPCOEstCost[Date]) < month([ThroughMth]) ,
[rvPMContractAnalysisDD_WithPCOEstCost[ProjCost] , urvPMContractAnalysisDD_WithPCOEstCost[CurrEstCost]),0)
Hi @AlexD123 ,
Could you tell me if your problem has been solved?
If it is, kindly Accept it as the solution. More people will benefit from it.
Or you are still confused about it, please provide me with more details about your problem.
Best Regards,
Stephen Tao
@AlexD123 , use correct column and table name
if ( year(urvPMContractAnalysisDD_WithPCOEstCost[Date]) < year([ThroughMth]) ,
if ( month(urvPMContractAnalysisDD_WithPCOEstCost[Date]) < month([ThroughMth]) ,
[rvPMContractAnalysisDD_WithPCOEstCost[ProjCost] , urvPMContractAnalysisDD_WithPCOEstCost[CurrEstCost]),0)