Don't miss your chance to take the Fabric Data Engineer (DP-700) exam on us!
Learn moreWe've captured the moments from FabCon & SQLCon that everyone is talking about, and we are bringing them to the community, live and on-demand. Starts on April 14th. Register now
Hi,
I am trying to look up values using DAX, but only where a text entry is = to something. I have the look up element working:
RTSG_Costs = LOOKUPVALUE(RTSGMatrix[RTSGAmount],RTSGMatrix[Award],LOOKUPVALUE(StudentDetails[Award],StudentDetails[SITS_StudentNumber],StudentYearsActive[SITS_StudentNumber]),RTSGMatrix[AcademicYear],StudentYearsActive[AcademicYear])*StudentYearsActive[MonthDecimal]
If I was working in excel I would add something like:
IF(RTSGMatrix[annualised]="Annual", FORMULA AS ABOVE, 0)
so that only look ups from entries that have 'Annual' against them are pulled through, with the rest returning a 0 value.
Solved! Go to Solution.
@SamGibbs1,
Firstly, please ensure that you use "New Column" option in Power BI Desktop to create calculated columns.
Secondly, please split the above DAX formula into multiple formulas to better troubleshoot the issue.
Col2=LOOKUPVALUE(RTSGMatrix[RTSGAmount],RTSGMatrix[Award],LOOKUPVALUE(StudentDetails[Award],StudentDetails[SITS_StudentNumber],StudentYearsActive[SITS_StudentNumber]),RTSGMatrix[AcademicYear],StudentYearsActive[AcademicYear])*StudentYearsActive[MonthDecimal]
Col1=LOOKUPVALUE(RTSGMatrix[RTSGPaidLump_or_Annual],RTSGMatrix[Award],LOOKUPVALUE(StudentDetails[Award],StudentDetails[SITS_StudentNumber],StudentYearsActive[SITS_StudentNumber]))
LastColumn = IF(TableName[Col1]="Annual",TableName[Col2],0)
If you still get errors, please share sample data of your table and post expected result here following the guide in this thread:https://community.powerbi.com/t5/Community-Blog/How-to-Get-Your-Question-Answered-Quickly/ba-p/38490.
Regards,
Lydia
Hi,
To expand a bit further I have tried this:
RTSG_Costs = If(LOOKUPVALUE(RTSGMatrix[RTSGPaidLump_or_Annual],RTSGMatrix[Award],LOOKUPVALUE(StudentDetails[Award],StudentDetails[SITS_StudentNumber],StudentYearsActive[SITS_StudentNumber]))="Annual",LOOKUPVALUE(RTSGMatrix[RTSGAmount],RTSGMatrix[Award],LOOKUPVALUE(StudentDetails[Award],StudentDetails[SITS_StudentNumber],StudentYearsActive[SITS_StudentNumber]),RTSGMatrix[AcademicYear],StudentYearsActive[AcademicYear])*StudentYearsActive[MonthDecimal],0)
but it returns an error "A table of multiple values was supplied where a single value was expected". I am guessing this is due to the IF statement returning multiple records to check?
@SamGibbs1,
Firstly, please ensure that you use "New Column" option in Power BI Desktop to create calculated columns.
Secondly, please split the above DAX formula into multiple formulas to better troubleshoot the issue.
Col2=LOOKUPVALUE(RTSGMatrix[RTSGAmount],RTSGMatrix[Award],LOOKUPVALUE(StudentDetails[Award],StudentDetails[SITS_StudentNumber],StudentYearsActive[SITS_StudentNumber]),RTSGMatrix[AcademicYear],StudentYearsActive[AcademicYear])*StudentYearsActive[MonthDecimal]
Col1=LOOKUPVALUE(RTSGMatrix[RTSGPaidLump_or_Annual],RTSGMatrix[Award],LOOKUPVALUE(StudentDetails[Award],StudentDetails[SITS_StudentNumber],StudentYearsActive[SITS_StudentNumber]))
LastColumn = IF(TableName[Col1]="Annual",TableName[Col2],0)
If you still get errors, please share sample data of your table and post expected result here following the guide in this thread:https://community.powerbi.com/t5/Community-Blog/How-to-Get-Your-Question-Answered-Quickly/ba-p/38490.
Regards,
Lydia
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
| User | Count |
|---|---|
| 55 | |
| 34 | |
| 32 | |
| 19 | |
| 17 |
| User | Count |
|---|---|
| 75 | |
| 72 | |
| 38 | |
| 35 | |
| 25 |