Re: Create Alphanumeric Passwords
could be check the AnalysisToolpack
filippo
Re: Create Alphanumeric Passwords
could be check the AnalysisToolpack
filippo
Re: Create Alphanumeric Passwords
simon,
I attach a spreadsheet. Could be I mistype something from german to english
filippo
Re: Lowering Memory Usage
How big is the file?
probably "vlookup" is killing your performance.
filippo
Re: Create Alphanumeric Passwords
Just realized that in the second "RANDBETWEEN" the range MUST be 48-57 ( 0 to 9 ) and not 49-57 ( 1 - 9 )
filippo
Re: Create Alphanumeric Passwords
try as well:
in A1 =CHAR(CHOOSE(RANDBETWEEN(1,3),RANDBETWEEN(49,57),RANDBETWEEN(65,90),RANDBETWEEN(97,122)))
copy right to J10.
in A2: = CONCATENATE(A1,B1,...,J1)
filippo
Re: Extract Dynamic Data From Closed Workbook
try
Sub look_for_range()
Dim begArea As Range, endArea As Range
Range("A1").Select
Set begArea = Columns(1).Find(What:="URLs", After:=ActiveCell, LookIn:=xlFormulas, _
LookAt:=xlPart, SearchOrder:=xlByRows, SearchDirection:=xlNext, _
MatchCase:=False, SearchFormat:=False).Offset(3, 1)
Set endArea = begArea.End(xlDown).Offset(0, 1)
Range(begArea.Address & ":" & endArea.Address).Select
End Sub
filippo
Re: Extracting Dynamic Data From Closed Workbook
is/can the starting cell be identified with a particular sign ( header, etc. ) ?
could you post a couple of examples ( in the same workbook, different worksheets ) to see how this appears?
filippo
Re: Code For Triangle
can I ask you the logic of this? is it right that you loose more and more datas in your triangle?
filippo
Re: Multiple Rows Into One Summary Row
cannot a pivot table solve your problem?
Re: Fill without copying formatting
use Edit->PasteSpecial->Formulas
Re: Vba Range.formula
change
ws.Range("B15").Formula = "=IF(D12<>"Age","",IF(AND(YEAR(MID(D9,14,10))=YEAR(TODAY()),MONTH(TODAY())>=7)=TRUE,"Do Nothing",IF(MONTH(TODAY())>=7,DATE(YEAR(TODAY())+1,1,1),IF(MONTH(TODAY())<=6,DATE(YEAR(TODAY()),7,1))))) "
use "" instead of " within your vba formula
ws.Range("B15").Formula = "=IF(D12<>"[B][COLOR="Red"]"[/COLOR][/B]Age[B][COLOR="Red"]"[/COLOR][/B]","",IF(AND(YEAR(MID(D9,14,10))=YEAR(TODAY()),MONTH(TODAY())>=7)=TRUE,"Do Nothing",IF(MONTH(TODAY())>=7,DATE(YEAR(TODAY())+1,1,1),IF(MONTH(TODAY())<=6,DATE(YEAR(TODAY()),7,1))))) "
filippo
PS
I did just for one
Re: Deleted Lines But Formula Doesn't Change
having few infos it's difficult to say; could you post a scratch of both workbooks to see structure and possilble references?
filippo
Re: Deleted Lines But Formula Doesn't Change
it looks to me that you are referencing a cell in a different workbook.
If both workbooks are open you shouldn't be any problem, but I you have open only the one with the cells to be deleted the other one will not be "updated" with the new reference
filippo
Re: User Form Output
Zoosh,
please refer to who you are answering
Re: Working With Percentages over Many Cells
you could replace as well all the "9.57" with let say "$B$5" and enter there your value
filippo
Re: Delete Whole Column If Header Contains "x"
thank you!
Re: Reset Dependent Drop Down List
in which line is the error generate?
filippo