this enable the keys
Sub Enable_Keys()
Dim StartKeyCombination As Variant
Dim KeysArray As Variant
Dim Key As Variant
Dim I As Long
On Error Resume Next
For Each StartKeyCombination In Array("+", "^", "%", "+^", "+%", "^%", "+^%")
KeysArray = Array("{BS}", "{BREAK}"...
Hi,
See if it is help for you.
ThisWorkbook:
Option Explicit
Private Sub Workbook_Activate()
Call ToggleCutCopyAndPaste(False)
End Sub
Private Sub Workbook_BeforeClose(Cancel As Boolean)
Call ToggleCutCopyAndPaste(True)
End Sub
Private Sub Workbook_Deactivate()
Call...
Another approach... but this is array formula:
=VLOOKUP(A1,INDIRECT("'"&INDEX(ListOfWorksheets,MATCH(1,--(COUNTIF(INDIRECT("'"&ListOfWorksheets&"'!$A:$B"),A1)>0),0))&"'!$A:$B"),2,0)
and press CSE
Note: define the name of worksheets in ListOfWorksheets by Name Manager.
Hi,
Something like this?
Sub Test()
With Selection.Interior
.Pattern = xlPatternLinearGradient
.Gradient.Degree = 90
.Gradient.ColorStops.Clear
End With
With Selection.Interior.Gradient.ColorStops.Add(0)
.Color = 255
.TintAndShade = 0
End With
With...
Hello,
I would like to ask some help regarding that how to find a value based on criteria and partial text. There is one condition: the different partial texts should be managed inside the formula (not store in range).
I have atteched a sample file with the desired results.
Thank you in...
Hello,
I would like to ask that what is the fastest way to remove all letters from a range in one shot?
In range G9:G the numbers ended with base units, like PC, KG or L and etc. Could you help me to figure out a code which can remove all letters (English Alphabet) from this range?
This is the...
Hello,
I would need your help to solve a date format problem. I use the below mentioned code but doesn't work well.
Option Explicit
Sub Test()
Dim OutputSheet1 As Worksheet
Dim OutputLastRow1 As Long
Set OutputSheet1 = Worksheets("Calculation")
With OutputSheet1
OutputLastRow1 =...
Hello,
I would need your help to find the 2nd value based on two criterias (Storage and Order number). Please, find attached my sample file with the desired result (cell M9).
Thank you in advance the help!
Thank you Hui the help.
Could you give me one more advice... how to add the "black bar" to the chart with "start and end line" and major tick marks (cross)? Is it possible?
Hi,
I would like to ask your help regarding data transfer from closed workbook. After many attempts I feel that I am completly lost.
The attached Components.xls file generated by SAP and when I want to transfer the data I receive "External table is not in the expected format" error message.
By...