data visualization
4 TopicsCreated a DAX Query Tutorial Video on Youtube
Just dropped a new video on writing DAX queries in Power BI! https://youtu.be/T_-Z9Mstygk?si=IC1QrA6E3iGWdCJH If you're diving into data analysis or trying to level up your dashboard game, understanding DAX is a must. In this video, I break down: What DAX is and why it’s powerful 🔹 The difference between calculated columns and measures 🔹 How to write clean, efficient queries 🔹 Real-world use cases that make your dashboards smarter Whether you're just starting with Power BI or looking to optimize your reports, this guide covers it all with simple explanations and practical examples.Solved3KViews1like4CommentsHow to Find Nearest Elements to a Selected Item Using X and Y Coordinates in Power BI?
Hello everyone, I'm working on a Power BI report with data that includes X and Y coordinates for each item. I'd like to implement a feature that allows users to select an item and see a list or table displaying the closest items to it. I was able to calculate the distance of each item to a fixed coordinate in a column, but I couldn’t make that reference coordinate change based on the item selected in the slicer. Current Setup: A dataset with X and Y coordinates columns for each item. A data slicer that allows the selection of a specific item. Objective: Calculate the distance between the selected item and other items. Sort these items based on their proximity to the selected item. Display the nearest items in a table or other visualization in Power BI. Questions: Is it possible to achieve this directly in Power BI using DAX or any other built-in functionality? Is there an alternative approach to display the nearest items based on coordinates, perhaps using a map visual or a custom visual in Power BI? Thank you in advance for any suggestions or DAX examples you can provide!Solved1.2KViews0likes4CommentsAbility to create a measure based on selection for a visual OR use anotheslicer if none is selected?
Hi Everyone, I'm going to try my best to articulate what I'm looking for, but I have a bar chart where my x axis is fiscal years (last 10 years) and my Y axis is how much money was spent for each. I also have a gauge that shows total spent and paid visual as well. My issue I'm having is I want my gauge to default to this fiscal year we're in, but update if another fiscal year from the bar chart is selected. My problem i'm having is I dont know if there is a way to set it to default if nothing is selected. Right now with all the bar chart's FYs showing the gauge is totaling all of them up together which is inaccurate since our FYs act in silo's so I dont want mass total. So I want the guage to be this FY or adjust if a single year from the chart is selected and if nothing in the chart is selected then gauge goes back to the current FY. I'm hoping i'm making sense. Is this even possible? What I tried to do is add a FY slicer with today's FY as the first/default so that keeps the guage for this FY and turn off the bar chart to filter from that slicer, but then if i select a year from the bar chart to view the guage is blank. I am hoping there's a way to create a measure and reference the selected item from the chart otherwise use the FY slicer i added or something like that. Thank you!1.4KViews0likes5CommentsDAX to return a column that has multiple filter criteria and multiple tables
Hi Good Day, I have a proper data set that involves three tables viz, 1)DataInvoice 2)Points 3)Factor I need a visual that shows Date column from Datainvoice,units column from datainvoice table multiplied with value column from Factor table. But the above can happen with few filter criteria as below 1)Date column from Datainvoice should fall between Start and End date of factor table and then return corresponding Value column 2)while filtering the above we should make sure that DBName-point-id from datainvoice should match DBName-point-id of points table which inturn looks for DBName-Utility in factor table and picks up the VALUE column This is how the relationship looks: I want the output to look like below in a visual File Portfolio performance Looking forware to your response Thanks in advance amitchandak Ashish_Mathur Greg FreemanZ Greg_Deckler380Views0likes0Comments