if = blank()
4 TopicsValues if an other value is not blank
Hi, I have a problem. I want to delete SqMeters values when Sold has no values. What i want: I have tried different measures but if I try to write: IF([Sold], sum[SqMeters]) or Sold/Sqm = CALCULATE( sum([SqMeters], FILTER ( VALUES ( Table[Store] ), [Sold] <> BLANK () ) ) these measures always return me an error where it tells me that the memory required for this calculation exceeds the available memory or a generic error. How could I write a measure so that the SqMeters value is removed when Sold is blank? Thank you!Solved841Views0likes5CommentsIF current week is blank show prior week and if prior week is blank so Not Available
Hi All, I am having difficulty finding a solution to a simple logic measure. The measure will be placed in the KPI visual. The logic is as follows: Two measures: Current Week Prior Week Logic: If the current week's results are blank, show the prior week's results. If the prior week's results are blank, show "Not Available". The reason the current week's results would be blank is because a portion of our data is not updated until the end of the week and everything else is updated at the beginning of the week. The reason the prior week would be blank is again the same reason except the lag between updates may move into following week. Thank you!Solved528Views0likes2CommentsMaking empty row in a date column as pending
Thanks in advance for helping me with this challenge here I'm trying to indentify empty row as pending. this the DAX code I wrote Status = IF('Fact-Tasks'[Closed] = BLANK(), "Pending",'Fact-Tasks'[Closed]) but I get this error "Expressions that yield variant data-type cannot be used to define calculated columns"Solved635Views0likes2CommentsIF ('A'[B] = BLANK(), 'A'[C], 'A'[D]) Cannot convert data type text to true/false
Going in circles. I need a column that does 3 evaluations on different fields and provides different results based on the different fields. Gives error cannot convert data type TEXT to TRUE/FALSE REASSIGN = IF(DetailCkReq[Batch_Str] = "REC", "RECURRING") || IF(DetailCkReq[CKREQ_ASSIGNMENT.CKREQ_NO.] = BLANK(), DetailCkReq[NAME], DetailCkReq[CKREQ_ASSIGNMENT.ASSIGNED_TO]) || IF(DetailCkReq[BATCH_ASSIGNMENT.BATCH_NAME] = BLANK(), DetailCkReq[NAME], DetailCkReq[BATCH_ASSIGNMENT.ASSIGNED_TO])Solved874Views0likes4Comments