Forum Discussion

Ashavorn_Code's avatar
Ashavorn_Code
New Member
1 year ago
Solved

Q&A Visual Not Showing Upcoming Month Events — Only Current and Past Months Displayed

Hi All, I'm currently using the basic Q&A visual in Power BI to allow users to query release calendar events using natural language. Attaching the structure of data: So, when i ask q...
  • v-ssriganesh's avatar
    1 year ago

    Hello Ashavorn_Code,
    Thank you for reaching out to the Microsoft Fabric Forum Community.

    I’ve reproduced your scenario in Power BI using a sample release calendar like yours. Initially, I observed the same behaviour queries as “Commit in July” didn’t return results even though the July event existed in the data.

    After investigating, I identified that this happens because the Q&A visual’s NLP engine may implicitly apply a filter on the date field (≤ TODAY()), hence ignoring future-dated entries.

    Workaround Implemented:

    To address this, I added a calculated column to the dataset:

    IsFutureEvent = IF([Date] > TODAY(), "Future", "PastOrToday")

    This enables more explicit control over filtering in the Q&A visual. For your reference, I’m attaching the .pbix file.

     

    If this information is helpful, please “Accept as solution” and give a "kudos" to assist other community members in resolving similar issues more efficiently.
    Thank you.