Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
Anonymous
Not applicable

Can't select column name when doing a measure

I'm not able to do pick a column name when doing a measurement and it greys out suggesting that i'm not able to use it. 
My formula is = 

events in progress =
CALCULATE(
COUNTROWS('public 10-bookgirl';
FILTER('public 10-bookgirl'[start 2]; <= MAX('Date Range'[DateTime]));
FILTER('public 10-bookgirl'[end 2] = BLANK() || ('public 10-bookgirl'[end 2] > MAX( 'Date Range'[DateTime]))

)

start 2 and end 2 is showing up grey even though it is the correct column name please advise.

 

Capture.PNGCapture.PNG

1 ACCEPTED SOLUTION
MFelix
Super User
Super User

Hi @Anonymous,

When using filter the first parameter is the table or column wher you wan to use the filter then you must refer to the specific column filter on the second parameter change your measure to

Events in progress =
CALCULATE (
COUNTROWS ( 'public 10-bookgirl' );
FILTER (
ALL ( 'public 10-bookgirl'[start 2] );
'public 10-bookgirl'[start 2] <= MAX ( 'Date Range'[DateTime] )
);
FILTER (
ALL ( 'public 10-bookgirl'[end 2] );
'public 10-bookgirl'[end 2] = BLANK ()
|| 'public 10-bookgirl'[end 2] > MAX ( 'Date Range'[DateTime] )
)
)

This should work.

Regards,
MFelix

Regards

Miguel Félix


Did I answer your question? Mark my post as a solution!

Proud to be a Super User!

Check out my blog: Power BI em Português



View solution in original post

1 REPLY 1
MFelix
Super User
Super User

Hi @Anonymous,

When using filter the first parameter is the table or column wher you wan to use the filter then you must refer to the specific column filter on the second parameter change your measure to

Events in progress =
CALCULATE (
COUNTROWS ( 'public 10-bookgirl' );
FILTER (
ALL ( 'public 10-bookgirl'[start 2] );
'public 10-bookgirl'[start 2] <= MAX ( 'Date Range'[DateTime] )
);
FILTER (
ALL ( 'public 10-bookgirl'[end 2] );
'public 10-bookgirl'[end 2] = BLANK ()
|| 'public 10-bookgirl'[end 2] > MAX ( 'Date Range'[DateTime] )
)
)

This should work.

Regards,
MFelix

Regards

Miguel Félix


Did I answer your question? Mark my post as a solution!

Proud to be a Super User!

Check out my blog: Power BI em Português



Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.