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.
Please help me, how do I assign "Not Assigned" to my blank values
Market Segment Blanks = IF(ISBLANK(SUMMARIZE(R_ESURVEY_CONSOLIDATED_V001,R_ESURVEY_CONSOLIDATED_V001[Proj: Market Segment])),"Not Assigned",SUMMARIZE(R_ESURVEY_CONSOLIDATED_V001,R_ESURVEY_CONSOLIDATED_V001[Proj: Market Segment]))
this other formula only returns 1 value
Market Segment Blanks = IF(ISBLANK(MAX(R_ESURVEY_CONSOLIDATED_V001[Proj: Market Segment])),"Not Assigned",MAX(R_ESURVEY_CONSOLIDATED_V001[Proj: Market Segment])
@Anonymous
You'll need to add a calculated column.
Column = IF ( R_ESURVEY_CONSOLIDATED_V001[Proj: Market Segment] = BLANK (), "Not Assigned", R_ESURVEY_CONSOLIDATED_V001[Proj: Market Segment] )
it works on a calculated column, but I was thinking of putting it in a measure, is it possible?
If anyone has the answer for this still. My data set is too large to be adding calculated columns really need to do it in measure if anyone has a workaround?