developer
1823 Topics"OVERWRITE EXISTING CELLS WITH NEW DATA..." GET DESELECTED
HELLO , I HAVE OFFICE 365 . FROM 1 MONTH AGO THE BUTTON IN DATA TAB THEN PROPERTIES AND IN IT "OVERWRITE EXISTING CELLS WITH NEW DATA..." GET DESELCTED AUTOMATICALLY AND WHEN WE REFRESH DATA IT GET OVERLAPPED . EARLIER IT WAS WORKING FINE LIKE IN SCREEN SHOT WE HAD SELECTED "OVERWRITE........" TAB BUT WHEN WE PRESS OK AND REOPEN IT IT GET DESELECTED PLEASE HELP ON THIS653Views0likes15CommentsMaking Python-in-Excel worth it
I feel like Python-in-Excel has huge promise. Embedding a Seaborn correlation matrix in an analysis sheet with a couple lines of readable code? Keeping multiple dimensions of data in one cell efficiently? Making models that involve recursion and iteration without all the workarounds of LET/LAMBDA? Yes please!! I've messed around with it a lot but my experience has mostly been negative and from reading comments it sounds like a lot of others have had bad experiences too. A local version that was unlimited for free would be ideal of course. But I'm going to assume for a minute that isn't possible for business reasons. Most of my frustrations relate to these three things. So maybe if we could get these it would be worth it to use? A way to track usage and buy more credits so we don't get stuck with #BLOCKED! with no recourse Improve the xl() function so it works with variables inside it instead of just literals. e.g. foo = "B4" ; bar = xl(foo) currently doesn't work but it should. The error messages need to always tell you what line number the error is in I'm curious if other folks have tried it and agree or disagree with this wish list.55Views1like2CommentsNeed to keep the first sheet tab visible
Hello Excellers, We have a workbook with 55 worksheets each does several things. Now obviously there is no screen in the world big enough to display all 55 worksheet tabs. Or at least I am not aware of such a large screen. So... Best next thing is that we can display 16 worksheet tabs in a row on our current screen size. What I need is some VBA code to that would keep the first (the first sheet tab from the left) sheet tab visible at least any time these 16 sheets are activated, the sheet tabs are scrolled so that sheet(1) is displayed. After the 16th sheet tab... oh well can't do a thing about that... I have shortened the worksheet names so much that now they are so cryptic one needs a list to know the actual name. I have tried some Worksheet_change event code to select the first sheet then select the target sheet but that did not work at all. Any help will be appreciated. GiGiSolved93Views0likes5CommentsShifting Row information to a new worksheet
I have a workbook where I am trying to create taskings for individual staff. I am wanting to setup the following, but I am limited on not being able to use macros, as Excel is controlled by HO What I want to achieve is the following: Select an item for a drop down list (already created with staff names), and then once a name is selected, the whole row duplicates to a different sheet (which is the staff member's name) and fills the next available free row Sheet 1: The drop down list contains people's names and is in Column C Sheet 2-15: The sheets available are the corresponding names as in the dropdown list. For example: Drop Down List name = Tom Brady Sheet Name = Tom Brady So if Tom Brady is selected in Sheet 1, Column C, then the row that name is in, is duplicated to the sheet that has been renamed to Tom Brady, and fills the next available row after row 8 Any help on this is greatly appreciated.41Views0likes2CommentsVisual and dax level optimization that causes report slowdown
Hi, I have this visual as attached, that has lot of visual level filters applied it has a dax measure called data completeness as below Data Completeness = var _total = COUNT('Calendar'[Date])*COUNT(Points[DBName-Point_Id]) var _result = [Count of Exisitng Days]/_total return _result It references a dax called Count of Exisitng Days as below Count of Exisitng Days = Var dates = SUMMARIZE(Data, Data[DBName-Point_Id], Data[Date]) Var Ext_dates = COUNTROWS(dates) return Ext_dates Now, the problem I have here is the performance of this visual is causing report to slow down. Please let me know how to optimize the dax and further steps to increase the performance PFA file here PR-419 - Data Coverage - Copy.pbix Thanks in advance! SergeiBaklanSolved277Views0likes13CommentsButton for reset all filters
Hi, First of all I am not at good at this but I looking for a way to use a button to reset all the filters I have. To use one button instead of clear all the filters separately would be great as it is more effcient. But as I wrote, I am not very good at this I was wondering if someone could show/teach me how to do it.84KViews1like4Comments