Supplies are limited. Contact info@espc.tech right away to save your spot before the conference sells out.
Get your discountScore big with last-minute savings on the final tickets to FabCon Vienna. Secure your discount
I'm trying to create a new column using a text column. If the text column is empty, I want the new column to have "0", if it is not empty, I want it to have a "1". Seems simple but I just can't come up with a working formula.
Solved! Go to Solution.
@BAChizek , in power query
if [Column] = null or [column] ="" then 0 else 1
In DAX, new column
if(isblank([column] || [column]= "", 0,1)
User | Count |
---|---|
12 | |
11 | |
8 | |
6 | |
6 |
User | Count |
---|---|
25 | |
19 | |
14 | |
10 | |
7 |