Dax Formula Problem

dkbollig

New Member
Joined
Aug 6, 2013
Messages
5
Hey There!

I have a problem where i want to fill in a column with either "Registered" or "Not Registered" depending if there is a date in the [warranty received date] column. If there is a date in [warranty received date] it is "Registered", if there is not a date it is not "Not Registered". My current formula =IF([Warranty Reg Rcvd]="","Not Registered","Registered"). is throwing me an error when there is a date in the column. Any help would be awesome. I am fairly new to this so excuse me if its a simple fix but ive been working on this for a while.

Thanks
Derek
 

Excel Facts

How to change case of text in Excel?
Use =UPPER() for upper case, =LOWER() for lower case, and =PROPER() for proper case. PROPER won't capitalize second c in Mccartney
Have you tried:
=IF(ISBLANK([Warranty Reg Rcvd]),"Not Registered","Registered")
 
Upvote 0

Forum statistics

Threads
1,223,983
Messages
6,175,778
Members
452,668
Latest member
mrider123

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top