Microsoft Fabric Community Conference 2025, March 31 - April 2, Las Vegas, Nevada. Use code FABINSIDER for a $400 discount.
Register nowThe Power BI DataViz World Championships are on! With four chances to enter, you could win a spot in the LIVE Grand Finale in Las Vegas. Show off your skills.
Hello Power BI comunity,
I am trying to refresh my data in report but I am keep getting the same error:
I did everything I can and I can't find the source of my problem, which column is causing this error.
Any help would be appriciated, please 🙂
Petra
@Pepi151101 , Share DAX code or Use Values in your formula
Proud to be a Super User! |
|
There are several types formulas in report:
1.
@Pepi151101 Try updating
Overdue Task = IF(NOT(ISBLANK(RRP_CustomerCare[Due_Date])) && TODAY()>RRP_CustomerCare[Due_Date] && RRP_CustomerCare[Task_Status] = "WAIT",1,0)
Task Closed =
IF(
RRP_CustomerCare[Task_Status] = "Closed" || RRP_CustomerCare[Task_Status] = "Completed",
IF(
ISBLANK(RRP_CustomerCare[Edit_Date]),
"0 days",
DATEDIFF(RRP_CustomerCare[Created_Date], RRP_CustomerCare[Edit_Date], DAY) & " days"
),
""
)
Proud to be a Super User! |
|
Make sure that Devices[Device_Guid] and RRP_CustomerCare[Device_Guid] both have the same type.
They do, all the types are persumably correct.