The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredCompete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.
Dear,
I have created this conditional column with the following measure :
Solved! Go to Solution.
@Anonymous , if you have a blank invoice date
then
IF( not(isblank('Invoice Table'[date of the invoice] )) && 'Invoice Table'[date of the invoice]<= DATE(2020,03,16), "Yes", "No")
if this coming because on join with date table. Means Date table is missing joins.
@Anonymous , if you have a blank invoice date
then
IF( not(isblank('Invoice Table'[date of the invoice] )) && 'Invoice Table'[date of the invoice]<= DATE(2020,03,16), "Yes", "No")
if this coming because on join with date table. Means Date table is missing joins.
Hello,
Thank you very much !