excel-2016

Predictive Text for VBA not working [closed]

核能气质少年 提交于 2021-02-08 11:43:19
问题 Closed. This question needs debugging details. It is not currently accepting answers. Want to improve this question? Update the question so it's on-topic for Stack Overflow. Closed 2 years ago . Improve this question Okay this might be a very stupid question but my predictive text when writing only happens occasionally. I'm currently using Excel 2016. Typing Range( opens the tooltip: But, typing .Range( in With Sheets(SName) does not open the tooltip: Can anybody help? Thank you very much!

How to enable Unicode in Excel 2016 VBA editor

家住魔仙堡 提交于 2021-02-07 19:51:00
问题 I have a worksheet with Hebrew word "שלום" in cell A1. I am trying to run this VBA code: Sub test() Dim str As String str = Range("A1") MsgBox str End Sub The message box displays: ???? Also, when I try to write Hebrew characters in VBA code: if range("A1") = "שלום" then 'do something...' instead of Hebrew letters I see gibberish. I use Excel 2016 on Windows 10. Hebrew language pack is installed. I did not face this problem in Excel 2010 on Windows 7. Anyone with an idea for enabling Hebrew

VBA Excel: how to get row and column number of named range?

久未见 提交于 2021-02-05 07:01:07
问题 I have the following problem and it's driving me NUTS! I work on a large database program in Excel, and I'm trying to retrieve the row and column numbers of specific named ranges. The following code used to work (temp_entryvalue is the name of the range): temp_datafile_row = Workbooks(datafile_filepath).Worksheets(temp_datafile_worksheet).Range(temp_entryvalue).Row temp_datafile_col = Workbooks(datafile_filepath).Worksheets(temp_datafile_worksheet).Range(temp_entryvalue).Column I get the ole'

How to delete entire row when case sensitive duplicates are found in Excel (for 100k records or more)?

↘锁芯ラ 提交于 2021-01-29 10:30:56
问题 This is a follow up question from How to remove duplicates that are case SENSITIVE in Excel (for 100k records or more)? . Since his code procedure manipulates the data of column A only, I'd like to also delete the entire row of data if case-sensitive duplicate is found. Case sensitive meaning: Case1 case1 cASE1 Are all unique records. 回答1: You can use a Dictionary to check for binary uniqueness and variant arrays to speed things up. To use the dictionary you will need to include a reference

Excel: Dynamic range within certain rows + data validation update

雨燕双飞 提交于 2021-01-29 04:41:51
问题 What I have here is small part of my big data set, with lot of drop downs and functions that are calculating everything around. I am just exceeding this table and trying to make it more automatically than it was before, but I stuck on that part that I put in green. Which function might be suitable when I wanna add some new cells on the right (right table) named Model Options > instead of Reserviert but some another name (will be populated later), but to automatically recognize it on left drop

Excel: Dynamic range within certain rows + data validation update

人走茶凉 提交于 2021-01-29 04:40:36
问题 What I have here is small part of my big data set, with lot of drop downs and functions that are calculating everything around. I am just exceeding this table and trying to make it more automatically than it was before, but I stuck on that part that I put in green. Which function might be suitable when I wanna add some new cells on the right (right table) named Model Options > instead of Reserviert but some another name (will be populated later), but to automatically recognize it on left drop

Bloomberg stops VBA Application.Ontime

ε祈祈猫儿з 提交于 2021-01-28 07:57:10
问题 I have the following VBA subroutine which is calls itself every second: Public Sub AllTheTime() iTimerSet = Now + TimeValue("00:00:01") Call runMyFunction Application.OnTime iTimerSet, "AllTheTime" End Sub This script is running perfectly: It is recalling itself every second and calculating some stuff. But when I install the Bloomberg Office Add-On (Bloomberg Ribbon) it is no longer working: It is running exactly one time then it is stopped. I checked this with Debug.Print. It seems that

DAX: distinct count using multiple columns

半腔热情 提交于 2021-01-28 06:12:39
问题 My table includes bunch of duplicated sales information for individual sellers, and I basically created a column and a measure which flags users whether the view they have includes duplicated sales information. here is a very simplified example of what my table looked like SalesManager SalesPersonnel Acccount Product Revenue SalesManager1 SalesPersonnel1 Acccount_A Product_A 100000 SalesManager1 SalesPersonnel1 Acccount_B Product_C 100000 SalesManager1 SalesPersonnel3 Acccount_A Product_A

How to find a specific data of consecutive numbers inside an excel spreadsheet column

女生的网名这么多〃 提交于 2021-01-27 07:00:07
问题 Please help me to find sequence of numbers present in column of a spreadsheet. I have a large data of 1's and 0's in an excel column, I need to find the sequence of consecutive 1's and 0's in the column. For example, my excel column is given below: 0 0 1 1 0 0 1 0 1 0 0 1 1 0 1 1 1 0 0 Please assume this as some of my column data, I need to find where are the sequences of 1's and 0's present in the column. For example, I need to find: 0 0 1 1 0 1 This sequence of data in the column. Is there

How to find a specific data of consecutive numbers inside an excel spreadsheet column

妖精的绣舞 提交于 2021-01-27 06:55:25
问题 Please help me to find sequence of numbers present in column of a spreadsheet. I have a large data of 1's and 0's in an excel column, I need to find the sequence of consecutive 1's and 0's in the column. For example, my excel column is given below: 0 0 1 1 0 0 1 0 1 0 0 1 1 0 1 1 1 0 0 Please assume this as some of my column data, I need to find where are the sequences of 1's and 0's present in the column. For example, I need to find: 0 0 1 1 0 1 This sequence of data in the column. Is there