Microsoft Fabric Community Conference 2025, March 31 - April 2, Las Vegas, Nevada. Use code FABINSIDER for a $400 discount.
Register nowThe Power BI DataViz World Championships are on! With four chances to enter, you could win a spot in the LIVE Grand Finale in Las Vegas. Show off your skills.
Hi,
I'm making a dax command to create a flag in a message like "present / no present" so to do that I use data in column A and B, the two columns come from the same table named: table 1, in column A I have some letters and in column B I have their respective codes, like is shown in the picture below. The measure that I want to do is to create a third column that shows a message "present" if one letter from column A has code as Control and other codes (A1, A5...) from column B; and I would show also "no present" if one letter from column A has only code as Control from column B.
Thank you! My best regards
Solved! Go to Solution.
If I understand your requirements correctly and you want to do this as a calculated column you could do something like the following
Attending Result = VAR colAvalue = 'Table 1'[Column A] VAR hasControl = COUNTROWS( FILTER('Table 1', 'Table 1'[Column A] = colAvalue && 'Table 1'[Column B] = "Control")) VAR rowsInGroup = COUNTROWS( FILTER('Table 1', 'Table 1'[Column A] = colAvalue)) RETURN IF( hasControl = 1 && rowsInGroup > 1, "Present", "No present")
If I understand your requirements correctly and you want to do this as a calculated column you could do something like the following
Attending Result = VAR colAvalue = 'Table 1'[Column A] VAR hasControl = COUNTROWS( FILTER('Table 1', 'Table 1'[Column A] = colAvalue && 'Table 1'[Column B] = "Control")) VAR rowsInGroup = COUNTROWS( FILTER('Table 1', 'Table 1'[Column A] = colAvalue)) RETURN IF( hasControl = 1 && rowsInGroup > 1, "Present", "No present")
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Check out the February 2025 Power BI update to learn about new features.
User | Count |
---|---|
86 | |
78 | |
54 | |
39 | |
35 |
User | Count |
---|---|
102 | |
84 | |
48 | |
48 | |
48 |