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

The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more

Reply
CastroRibeiro
Helper I
Helper I

Count if current date is between a data range

 

I have the columns: [MARCO INICIAL] and [MARCO_FINAL]

I need to know if the current date is among these data and then sum 

Example: Today is 11, if this value is between this data.

I tried to do something like this:

But this way it will only sum if the column [MARCO_INICIAL] OR [MARCO_FINAL] was equal to the current date

 

FRANQUIA_TOTAL = 
var totalIndisponibilidade = CALCULATE(
    COUNTROWS(
        FILTER(
            TBL_DISPONIBILIDADE_FROTA_AEREA,
            DAY(TBL_DISPONIBILIDADE_FROTA_AEREA[MARCO_INICIAL]) >= DAY(NOW()) &&
            DAY(TBL_DISPONIBILIDADE_FROTA_AEREA[MARCO_FINAL]) <= DAY(NOW()) &&
            TBL_DISPONIBILIDADE_FROTA_AEREA[TIPO_OCORRENCIA] = "UTILIZAÇÃO DE FRANQUIA"
        )
    )
)
var _total = FORMAT(totalIndisponibilidade,UNICHAR(9650)&" 0") 


return _total 

 

1 REPLY 1
Ashish_Mathur
Super User
Super User

Hi,

This should ideally solved with a calculated formula (not a measure).  If you are OK with my approach, then share the download link of the PBI file.


Regards,
Ashish Mathur
http://www.ashishmathur.com
https://www.linkedin.com/in/excelenthusiasts/

Helpful resources

Announcements
Power BI DataViz World Championships

Power BI Dataviz World Championships

The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now!

December 2025 Power BI Update Carousel

Power BI Monthly Update - December 2025

Check out the December 2025 Power BI Holiday Recap!

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.