I have a custom entity, EntityA, which has a start date and and end date. I would like to have a (calculated) field which tells me if TODAY is between start and end. So I would like to know if the post is "active".
I have exported CRM data to PowerBI and can make a new column with Yes or No value with this DAX expression:
Active = IF('EntityA'[Start]<=TODAY()&&'EntityA'[Slut]>=TODAY();"Yes";"No")
Is it possible to have the same thing /something similar in CRM?
*This post is locked for comments