Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
Hello,
I've been trying to figure out a work around for the formula below so that I can get a date back, but I haven't had much luck.
Solved! Go to Solution.
@Anonymous , You need to make sure data type is same
IF(isblank(Append1[ Planned order qty]),Append1[Column 4],Append1[Column 2])
or
IF(isblank(Append1[ Planned order qty]),Append1[Column 4] & "" ,Append1[Column 2] & "")
Hi, @Anonymous
Based on your description, I created sample data to reproduce your scenario.
You may create a calculated column as below to convert the data type of the column to text.
Result =
IF(
Append1[Planned order qty]=BLANK(),
CONCATENATE(Append1[Column 4],""),
CONCATENATE(Append1[Column 2],"")
)
Result:
Best Regards
Allan
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
@Anonymous , You need to make sure data type is same
IF(isblank(Append1[ Planned order qty]),Append1[Column 4],Append1[Column 2])
or
IF(isblank(Append1[ Planned order qty]),Append1[Column 4] & "" ,Append1[Column 2] & "")
Hi @Anonymous
it looks like you ahve a different data types for column4 and column2
Make sure it has the same date type and it should help you
Check out the November 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
| User | Count |
|---|---|
| 98 | |
| 72 | |
| 50 | |
| 50 | |
| 43 |